我复制了用于连接 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
。