Skip to content

Instantly share code, notes, and snippets.

@mauriciomassaia
Created August 29, 2019 01:55
Show Gist options
  • Save mauriciomassaia/489bdb2bc85097801a92d2dcb1e90594 to your computer and use it in GitHub Desktop.
Save mauriciomassaia/489bdb2bc85097801a92d2dcb1e90594 to your computer and use it in GitHub Desktop.
Convert mp4 to webm videos
#!/bin/bash
VIDEOS=/Users/mm/videos/exported/
find "$VIDEOS" -name '*.mp4' -exec sh -c 'ffmpeg -i "$0" -c:v libvpx -crf 10 -b:v 1M -c:a libvorbis "${0%%.mp4}.webm"' {} \;
exit;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment