ffmpeg 失败并显示错误无法找到适合“输出”的输出格式

ffmpeg 失败并显示错误无法找到适合“输出”的输出格式

我复制了用于连接 mp4 文件的代码,如下所示这里

ffmpeg -f concat -safe 0 -i mylist.txt -c copy output

它失败并出现错误

[NULL @ 0x7ff620828600] Unable to find a suitable output format for 'output'

output: Invalid argument

答案1

ffmpeg不知道output应该是什么格式。

要保存在 mp4 容器中,请使用ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4

相关内容