ffmpeg join / concate 2 or more ts video files

first cut your video file:
ffmpeg -i gekocht.ts -ss 56:21 -t 9:27 -c:v copy -c:a copy part2.ts
-ss=starttime
-t = length

then concat

ffmpeg -i "concat:part1.ts|part2.ts" -c copy out.ts


Comments are closed.