Convert Data to sound and back

前端 未结 6 2320
旧巷少年郎
旧巷少年郎 2021-02-15 19:50

Are there libraries out there that can convert data (text files, etc) to sound and back to the original data?

The sound can be transmitted any medium I wish, whether rad

6条回答
  •  北海茫月
    2021-02-15 20:17

    I think the medium is important, as are other factors such as the size of the files and the transmission time available. A simple algorithm would be to convert your files to text (UUENCODE should do that trick) then convert to morse code : http://www.codeproject.com/KB/vb/morsecode.aspx

    Morse gives you a simple alphabet able to survive transmission over a fairly noisy radio channel.

    If your carrier is cleaner a conversion of your UUEncoded file into a series of frequencies one per character would probably also work, and be easy enough to decode at the other end, Frequency Analyzer in C#

提交回复
热议问题