

The best solution would of course to be able to set the correct start time in my first command where i take out the 10 second part but i would also be ok with running a 2nd command to fix the time. Is it anyway i can use ffmpeg to correct it to 00:00:20?

So the duration is ok but the start time is incorrect. To create the 2nd part (that starts at 10 seconds into the video and ends at 20 seconds into the video): ffmpeg -i sample.avi -ss 00:00:10 -to 00:00:20 -vcodec libx264 -acodec aac -vf scale=426:-1 out1.tsīut when i check the file using ffprobe it says: Duration: 00:00:10.02, start: 1.458667, bitrate: 359 kb/s I am splitting up a video into multiple 10 second ts-parts (mpeg-ts format) using ffmpeg on windows.
