4 ms·
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`
by chairleader 2y 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`
- anthk 2y agoMinimodem 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
- chairleader 2y agofantastic, thanks!