Created
August 27, 2010 06:51
-
-
Save lgrz/552943 to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
# Shortcut for converting videos to avi format | |
if [[ $# -ne 1 ]] | |
then | |
echo "Usage: $0 <file>" | |
exit 1 | |
fi | |
OUTFILE=${1/.*/} | |
ffmpeg -sameq -i $1 -vcodec msmpeg4v2 "$OUTFILE.avi" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment