Java – convert data to sound and return
Is there a library that can convert data (text files, etc.) into sound and return the original data?
Sound can be transmitted to any media I want, whether it's radio, etc I just need to store the data in a sound file
Scenario:
Step 1: insert the image with the embedded image Convert docx files to wav.
Step 2: send by radio wave
Step 3: replace this Wav is converted back to with embedded images Docx file
This concept can be applied to any data
Technology:
. Net or Java
Solution
I think media is important, and other factors are also important, such as file size and available transfer time A simple algorithm is to convert your file to text (uuencode should do this) and then to Morse Code: http://www.codeproject.com/KB/vb/morsecode.aspx
Morse provides you with a simple alphabet that can be transmitted on quite noisy radio channels
If your operator is cleaner, your uuencoded file is converted to a series of frequencies, one character per character may also be valid, and it is easy to decode at the other end, frequency analyzer in C#