ffmpeg concat videos with different timebase
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 -crf 30 -b:a 23k -b:v 96k -threads 3 -y 'out_'$file; done compressed video. When I play the generated video, the player shows the video length is much longer than the sum of compressed video pieces. And at the linkage between slices,the frame can play a very long time,time on the player is going on,but the frame is still. I use ffprobe to show the original video pieces and compressed video pieces. And found the original videos with same tbr,tbn,tbc , while the compressed not.