1
How to encode WAV PCM into WAV with ADPCM encoding?
I tried FFmpeg. I can see from the old FFmpeg codec list, that it previously supported encoding into adpcm_adx, adpcm_ima_qt, adpcm_ima_wav, adpcm_ms, adpcm_swf and adpcm_yamaha. However, these codecs seem to be not included into FFmpeg anymore (at least, in my v.4.1.3 installation).
The purpose is to include a miniature audio file into an embedded project and then decode it with dr_wav library, which supports IMA ADPCM and Microsoft ADPCM.
1My copy of (Arch Linux built) ffmpeg 4.1.3 still lists all these codecs and more (adpcm_g722, adpcm_g726) available for encoding under 'ffmpeg -codecs'. Could you clarify how you installed ffmpeg yourself, and include the output of
ffmpeg -version? – user1686 – 2019-05-26T10:16:05.253@grawity, thanks for help! I was looking at
ffmpeg -formats | grep adpcminstead offfmpeg -codecs | grep adpcm. Silly me... And I also was using-foption instead of-acodec, so I got confused byRequested output format 'adpcm_ms' is not a suitable output formaterror... – Feel free to provide an answer. – Andriy Makukha – 2019-05-26T11:46:11.283