Skip to content

Instantly share code, notes, and snippets.

@andreasbotsikas
Created December 30, 2020 15:36
Show Gist options
  • Save andreasbotsikas/9d5968a819d01da7324376cd5424f258 to your computer and use it in GitHub Desktop.
Save andreasbotsikas/9d5968a819d01da7324376cd5424f258 to your computer and use it in GitHub Desktop.
Encode mts video to mp4
@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