I have used gtk-recordMyDesktop to make a video as an OGV file using the default settings. I need to do 3 things:
How can I reduce the screen resolution (height and width) so that it can fit into a smaller video size on my website?
How can I pull out like every third frame so that the file size is not so large, yet not mess up the sound?
Not all Windows IE users can view OGV files. How can I convert to FLV (or, as a fallback, MP4) so that I can share on my blog?
You can resize and convert with
ffmpeg
usingffmpeg -i input.ogv -s widthxheight -sameq output.flv
.You can also change the video bit rate with
-b:v bitarate
and control the frame rate with-r framerate
to reduce the size of outcome. As izx has mentioned the bit rate option is recommended over changing frame rate or dropping frames.You can use Avidemux
Source: USC
You can also use Pitivi Video Editor
Adding a Screencast / Video Clip into Pitivi
Source: http://zenit.senecac.on.ca/wiki/index.php/Using_Pitivi_Non-Linear_Video_Editor
To add the video clip into the project area, simply click and drag the object into the area below the Timeline Ruler. Quoted from this site
After you import the file, add it to the timeline, and do your editing, click on the render button, and it will allow you to save the file as .flv.