Skip to content

Instantly share code, notes, and snippets.

@gringoh
Last active September 21, 2021 08:50
Show Gist options
  • Save gringoh/534590d5603f37467d7a523ee5449043 to your computer and use it in GitHub Desktop.
Save gringoh/534590d5603f37467d7a523ee5449043 to your computer and use it in GitHub Desktop.
[ffmpeg: Transform to mp4 and resize to 300px] #ffmpeg

ffmpeg: Transform to mp4 and resize to width=300px

ffmpeg -i input.webm -filter:v scale="300:trunc(ow/a/2)*2" -vcodec h264 -an output.mp4

-an means no sound

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment