ffmpeg concat videos with different timebase

后端 未结 2 2026
无人共我
无人共我 2021-01-17 00:33

I use

ffmpeg.exe -f concat -i file_path_list_txt -c copy out_out.mp4

to concat

for file in 1265_*; do ffmpeg -i $file -cr         


        
2条回答
  •  不知归路
    2021-01-17 00:51

    When compressing to MOV/MP4, set a common timescale tbn using -video_track_timescale N. For your input, N=600 looks fine.

提交回复
热议问题