Skip to content

Instantly share code, notes, and snippets.

@deltaepsilon
Created December 15, 2011 20:25
Show Gist options
  • Save deltaepsilon/1482722 to your computer and use it in GitHub Desktop.
Save deltaepsilon/1482722 to your computer and use it in GitHub Desktop.
Loop through .mp4 files, convert to .ogv
#!/usr/bin/env bash
cd "$( dirname "$0" )"
for f in *.mp4
do
echo "Processing $f..."
ffmpeg2theora $f
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment