On Tue, Apr 13, 2021 at 17:49:55 +0200, Bo Berglund wrote:
> Question:
> Is there a quicker way to just go from ts to mp4 so the file format is OK even
> though the video size remains at 1280x720?
>
> (I could live with the size even though the disk storage takes a hit...)

Yes, by remuxing, i.e. using the "copy" codec for video as well:

$ ffmpeg -i %INFILE% -c copy %OUTFILE%

or, as Carl suggested:

$ ffmpeg -i %INFILE% -c copy -movflags +faststart %OUTFILE%

As mentioned, the suffix .mp4 already implies the format you are trying
to achieve.

Cheers,
Moritz
_______________________________________________
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to