Skip to content

Instantly share code, notes, and snippets.

@m039
Created August 3, 2011 16:00
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save m039/1122999 to your computer and use it in GitHub Desktop.
Save m039/1122999 to your computer and use it in GitHub Desktop.
Convert file from .flv to .ogv via ffmpeg
#!/bin/sh
# Author: m039 <flam44 (at) gmail (dot) com>
# usage: ./to_ogv.sh <path to .flv file> <path to .ogv file>
ffmpeg -i ${1} -f ogg -vcodec libtheora -acodec libvorbis ${2}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment