2011-04-09 16:50:01 +0000 2011-04-09 16:50:01 +0000
262
262

用FFmpeg删除视频文件中的音频

如何用FFmpeg删除视频文件中的音轨?

答案 (3)

370
370
370
2011-04-09 17:03:47 +0000

你可以通过使用-an标志来删除音频。

103
103
103
2012-10-08 10:26:48 +0000

你可能不想重新编码视频(一个缓慢而有损的过程),所以可以试试:

ffmpeg -i [input_file] -vcodec copy -an [output_file]

(n.b.一些Linux发行版现在附带了ffmpeg的avconv fork)

9
9
9
2014-08-15 11:37:20 +0000
avconv -i [input_file] -vcodec copy -an [output_file]

如果因为ffmpeg的存在而无法安装avconv,可以试试这个。