Ubuntu – How to reduce the screen and file size of a recorded video, plus convert to FLV

.mp4flvogg-vorbisrecordmydesktopvideo conversion

I have used gtk-recordMyDesktop to make a video as an OGV file using the default settings. I need to do 3 things:

  1. How can I reduce the screen resolution (height and width) so that it can fit into a smaller video size on my website?

  2. How can I pull out like every third frame so that the file size is not so large, yet not mess up the sound?

  3. 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?

Best Answer

You can resize and convert with ffmpeg using ffmpeg -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.