FFmpeg“无法为'-i'找到合适的输出格式”


4

我正在尝试使用Fabio Sonnati博客中的以下参数进行简单的转换。

ffmpeg –i source.MOV –r 15 –s 320×240 –an video.flv

得到这个错误

Unable to find a suitable output format for '–i'

Answers:


7

罪魁祸首在于博客文章本身。作者使用了en-dash而不是hypen-minus,而不是-),因此FFmpeg会阻塞它并且不会识别i为输入选项。

此外,作者使用乘法符号而不是拉丁语x来表示大小(×而不是x)。

要解决此问题,请将命令替换为:

ffmpeg -i source.MOV -r 15 -s 320x240 -an video.flv

然后给作者写一封他们应该修复他们的例子的邮件。

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.