Hacker News new | ask | show | jobs
by chairleader 777 days ago
Out of curiosity, are there Linux tools to go from binary files to audio and back again? i.e `cat archive.zip | faxify -wav > archive.zip.wav`
1 comments

Minimodem

Encode to opus:

      cat foo.zip | minimodem --tx -r 300 -f out.flac

      opusenc --bitrate 64 out.flac out.opus

Decode from opus:

       minimodem --rx -r 300 -f out.opus > foo2.zip
fantastic, thanks!