Category: ffmpeg

Convert a TS file to MP4 using ffmpeg Looselessly 0

Convert a TS file to MP4 using ffmpeg Looselessly

$> ffmpeg -analyzeduration 2147483647 -probesize 2147483647 -i ~/assets/input.ts -c:v copy -c:a copy ~/assets/output.mp4 analyzeduration and probesize are just a safety in case the GOP size is very high in TS stream. You might not need...