Skip to content

Instantly share code, notes, and snippets.

@samelie
Created December 3, 2014 12:02
Show Gist options
  • Save samelie/157a1ef9a3ce48bcb6d0 to your computer and use it in GitHub Desktop.
Save samelie/157a1ef9a3ce48bcb6d0 to your computer and use it in GitHub Desktop.
for i in *.mp4; do ffmpeg -i $i -c:v libvpx -minrate 3M -maxrate 3M -b:v 3M -c:a libvorbis $i.webm; done
@samelie
Copy link
Author

samelie commented May 18, 2015

ffmpeg -i toto.mov -q:v 1 -vcodec mpeg4 -y toto.avi

@samelie
Copy link
Author

samelie commented Jan 11, 2016

for i in *.mp4; do ffmpeg -i $i -c:v libvpx-vp9 -minrate 10M -maxrate 10M -b:v 10M -c:a libvorbis $i.webm; done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment