ffmpeg-如果输出已经存在,则跳过进程


20

我正在运行一个批处理脚本以在Python中转换视频文件,但是可能会发生输出文件已经存在的情况,因此是否可以避免ffmpeg询问我如果输出已经存在该怎么办?我希望它自动跳过该过程。

Answers:


29

ffmpeg文档中

-n (全局)
不要覆盖输出文件,如果指定的输出文件已经存在,请立即退出。

用法:

$ ffmpeg -n -i input output.mp4
  …
  File 'output.mp4' already exists. Exiting.
  • -n是全局选项。首先应指定全局选项。
  • 相反的选项-y将自动覆盖输出而无需询问。

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.