Skip to content

Instantly share code, notes, and snippets.

@gabrieldance
Created October 31, 2013 19:42
Show Gist options
  • Save gabrieldance/7255619 to your computer and use it in GitHub Desktop.
Save gabrieldance/7255619 to your computer and use it in GitHub Desktop.
ffmpeg to OGV
#!/bin/bash
for file in *.mov; do
ffmpeg2theora -v 9 -a 6 --max_size 640x360 -o ../640x360/${file}.ogv $file
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment