ffmpeg - Making a Clean WAV file

前端 未结 2 1728
忘掉有多难
忘掉有多难 2021-02-11 04:36

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

2条回答
  •  情深已故
    2021-02-11 05:30

    FFMpeg by default is adding a LIST-INFO chunk to the WAV output. Adding -bitexact suppresses it.

    So,

    ffmpeg -i "orig.wav" -f wav -bitexact -acodec pcm_s16le -ar 22050 -ac 1 "ffmpeg.wav"
    

提交回复
热议问题