Skip to content

Instantly share code, notes, and snippets.

@kpping
Created December 11, 2018 04:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kpping/ab619910ada52ef38a7ffdf535b238fa to your computer and use it in GitHub Desktop.
Save kpping/ab619910ada52ef38a7ffdf535b238fa to your computer and use it in GitHub Desktop.
Scale video size
#!/usr/bin/env bash
FILE_IN="video.mp4" # in
SCALE="640x360" # width x height
FILE_OUT="video_640x360.mp4" # out
ffmpeg -i $FILE_IN -vf scale=$SCALE $FILE_OUT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment