ffmpeg - Making a Clean WAV file

前端 未结 1 847
遥遥无期
遥遥无期 2021-02-11 04:58

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

相关标签:
1条回答
  • 2021-02-11 05:34

    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"
    
    0 讨论(0)
提交回复
热议问题