本文介绍了如何强制ffmpeg进入非交互模式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有时您希望ffmpeg询问您是否应该覆盖文件.有时,它只是您希望在某些情况下失败而失败的脚本. IE.如果您有任何疑问,请不要依赖stdin进行回答.

Sometimes you want ffmpeg to ask you whether it should overwrite a file. Sometimes it's just a script that you prefer would fail if something is amiss. I.e. don't rely on stdin to answer if you have a question.

推荐答案

请参见 https://ffmpeg .org/ffmpeg.html#Main-options

-stdin-在标准输入上启用交互.除非检测到管道,否则默认情况下为开.

-stdin -Enable interaction on standard input. On by default unless a pipe is detected.

-nostdin-显式禁用控制台交互.如果没有-y,这将导致ffmpeg在目标文件存在的情况下出错.

-nostdin - To explicitly disable console interactions. Without -y this will cause ffmpeg to error out if the target file exists.

-y-覆盖输出文件

这篇关于如何强制ffmpeg进入非交互模式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-07 07:10