使用FFmpeg从视频文件中删除音频


Answers:



97

您可能不想重新编码视频(过程缓慢且有损),因此请尝试:

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

(nb现在ffmpegavconv fork附带了一些Linux发行版)


与接受的解决方案相比,这对我没有任何影响。
nidi

1
vcodec是的别名-c:v,因此具体地说,它仅复制视频流。根据我所看到的,您唯一无法防止的数据是字幕,元数据等。
Rogue

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.