Skip to content

Instantly share code, notes, and snippets.

@agarzon
Created September 3, 2013 20:34
Show Gist options
  • Save agarzon/6429185 to your computer and use it in GitHub Desktop.
Save agarzon/6429185 to your computer and use it in GitHub Desktop.
Video converter
#!/bin/bash
#Author: Alexander Garzon
ERROR() {
echo $0 ERROR: $1 >&2
exit 2
}
# -- Sanity check on parameters
[ $# -ne 1 ] && ERROR 'Please provide video file'
ffmpeg -i "$1" -f avi -c:v mpeg4 -b:v 4000k -c:a libmp3lame -b:a 320k "$1.avi"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment