Monday, April 29, 2024
 Popular · Latest · Hot · Upcoming
3
rated 0 times [  3] [ 0]  / answers: 1 / hits: 7828  / 1 Year ago, mon, february 20, 2023, 11:40:01

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?



More From » mp4

 Answers
3

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.


[#37640] Tuesday, February 21, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
whipstder

Total Points: 189
Total Questions: 110
Total Answers: 99

Location: Uzbekistan
Member since Sat, Feb 27, 2021
3 Years ago
;