Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save NickNaso/1a3ba39e1f8bc28f4927e79e9fa855f0 to your computer and use it in GitHub Desktop.
Save NickNaso/1a3ba39e1f8bc28f4927e79e9fa855f0 to your computer and use it in GitHub Desktop.
Batch convert mp4 to webm using ffmpeg
for i in *.mp4;
do name=`echo "$i" | cut -d'.' -f1`
echo "$name"
ffmpeg -i "$i" -acodec libvorbis -aq 5 -ac 2 -qmax 25 -threads 2 "${name}.webm"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment