Advertisement
你可以通过使用-an
标志来删除音频。
你可能不想重新编码视频(一个缓慢而有损的过程),所以可以试试:
ffmpeg -i [input_file] -vcodec copy -an [output_file]
(n.b.一些Linux发行版现在附带了ffmpeg的avconv fork)
avconv -i [input_file] -vcodec copy -an [output_file]
如果因为ffmpeg
的存在而无法安装avconv
,可以试试这个。