Created
December 30, 2020 15:36
-
-
Save andreasbotsikas/9d5968a819d01da7324376cd5424f258 to your computer and use it in GitHub Desktop.
Encode mts video to mp4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@REM Note that we scale down the video to 720p. Expect 200Mb to be converted into 70Mb. 1M in mpeg is too broken so we selected 5M | |
ffmpeg.exe -i original_video.mts -filter:v scale=720:-1 -vcodec mpeg4 -b:v 5M -acodec libmp3lame -b:a 128k output_video.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment