Difference between revisions of "FFmpeg Resources"
From MyLabWiki
Line 19: | Line 19: | ||
− | |||
[[Category:Video Processing]] | [[Category:Video Processing]] |
Revision as of 16:34, 31 January 2010
- Website: http://ffmpeg.org/
- Building for Mac: http://stephenjungels.com/jungels.net/articles/ffmpeg-howto.html
- User-level howto: http://howto-pages.org/ffmpeg/
Conversion of screen captures
Record Linux screen using gtk-recordmydesktop → .ogv file.
To simply convert to Mac-readable format:
ffmpeg -i capture.ogv -sameq capture.mov
Sometimes it is easiest to capture the whole desktop and crop during conversion:
ffmpeg -i capture.ogv -cropbottom 304 -aspect 16:9 -sameq capture.mov
Skip ahead 20 second and convert 30 seconds:
ffmpeg -i capture.ogv -ss 20 -t 30 -cropbottom 304 -aspect 16:9 -sameq capture.mov