Skip to content

Instantly share code, notes, and snippets.

@lbrito1
Created October 27, 2015 13:49
Show Gist options
  • Save lbrito1/6b2ee129a91da3e9a5c1 to your computer and use it in GitHub Desktop.
Save lbrito1/6b2ee129a91da3e9a5c1 to your computer and use it in GitHub Desktop.
MP4 to webm
# /home/lbrito/Documents/code/snippets/towebm.sh
for entry in "$search_dir"./*.mp4
do
entry=${entry:2}
output="${entry%.*}"
echo "Converting $entry to $output"
avconv -i "$entry" -c:v libvpx -maxrate 400k -qmax 32 -qmin 8 "$output.webm"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment