Skip to content

Instantly share code, notes, and snippets.

@jeremyruppel
Created February 5, 2012 03:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeremyruppel/1742391 to your computer and use it in GitHub Desktop.
Save jeremyruppel/1742391 to your computer and use it in GitHub Desktop.
ffmpeg encoding settings
# convert mov to ogv
ffmpeg -i RFI_CaseStudy_V3b_DS_720p.mov -vb 3221700 -f ogg RFI.ogv
# convert mov to webm
ffmpeg -i RFI_CaseStudy_V3b_DS_720p.mov -vb 3221700 -f webm RFI.webm
# get a screenshot at the 14s mark
ffmpeg -ss 00:00:14 -i RFI_CaseStudy_V3b_DS_720p.mov -vframes 1 RFI.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment