使用 ffmpeg 合并视频不起作用

Merging videos with ffmpeg is not working

合并正常,但视频 运行 不正确。我们只能听到声音?

这是什么原因?

mylist.txt
file '/path/to/file1.mp4'
file '/path/to/file2.mp4'
file '/path/to/file3.mp4'    
ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4

如果您有 MP4 文件,可以通过首先将它们转码为 MPEG-2 传输流来无损地串联这些文件。对于 H.264 视频和 AAC 音频,可以使用以下内容:

ffmpeg -i input1.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate1.ts
ffmpeg -i input2.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate2.ts
ffmpeg -i "concat:intermediate1.ts|intermediate2.ts" -c copy -bsf:a aac_adtstoasc output.mp4

Reference Url