PROBLEM: 3 identical-format files (all exported in batch together, with identical settings) concatenated using ffmpeg concat demuxer. Command runs without error (and no console printouts either) but also no output file. Mac OS 10.15.6, ffmpeg version 4.3.1
Concat text file "test.txt" as follows:
file 'test_clip1.mp4'
file 'test_clip2.mp4'
file 'test_clip3.mp4'
Each of these files ffprobe readouts are the same. There is no audio stream.
test_clip1.mp4:
Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080, 911 kb/s, 23.98 fps, 23.98 tbr, 19184 tbn, 47.96 tbc (default)
test_clip2.mp4
Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080, 628 kb/s, 23.98 fps, 23.98 tbr, 19184 tbn, 47.96 tbc (default)
test_clip3.mp4
Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080, 615 kb/s, 23.98 fps, 23.98 tbr, 19184 tbn, 47.96 tbc (default)
FFmpeg command:
ffmpeg_cmd = ["ffmpeg",
"-f",
"concat",
"-safe", "0",
"-i", "test.txt",
"test_concatenated.mp4"]