# HG changeset patch # User Oleksandr Gavenko # Date 1382715644 -10800 # Node ID c029267830ff6a252fe0bfabe18602338cc6cf96 # Parent 38ef30108e5636ea01cd9221b3e234afd5b2aa26 Screenshort movie by ffmpeg. diff -r 38ef30108e56 -r c029267830ff screencast.rst --- a/screencast.rst Fri Oct 25 18:32:29 2013 +0300 +++ b/screencast.rst Fri Oct 25 18:40:44 2013 +0300 @@ -84,6 +84,19 @@ $ mencoder "mf://*.jpg" -mf fps=30 -o output.avi +Screenshort movie by ffmpeg. +---------------------------- +:: + + mplayer -ao null -ss 0:0:33 -endpos 2 eagles.avi -vo jpeg:outdir=~/dir + mplayer -ao null -ss 0:0:33 -endpos 2 eagles.avi -vo png:z=9:outdir=~/dir + +Here: + + * ``-ss`` tells mplayer where you begin + * ``-endpos`` tells mplayer where to stop (minutes) + * ``z=9`` sets compression level + ImageMagic and shell script. ---------------------------- ::