I\'m looking to batch convert a number of files to audio files using ffmpeg for a game called Star Wars: Jedi Knight: Dark Forces II. The problem I\'m
ffmpeg
Star Wars: Jedi Knight: Dark Forces II
FFMpeg by default is adding a LIST-INFO chunk to the WAV output. Adding -bitexact suppresses it.
-bitexact
So,
ffmpeg -i "orig.wav" -f wav -bitexact -acodec pcm_s16le -ar 22050 -ac 1 "ffmpeg.wav"