Sunday, May 12, 2024
 Popular · Latest · Hot · Upcoming
7
rated 0 times [  7] [ 0]  / answers: 1 / hits: 1450  / 1 Year ago, mon, january 16, 2023, 9:40:00

As the title suggests, I am asking a lot.



We've been trying to generate some screencasts on my eeepc. recordmydesktop is doing the job decently, but only if allowed time to "compile" the video afterwards. If we ask it to do "on the fly", video and audio get out of sync.



Now, we are creating many screencasts as practice (and like to watch them after, to criticize). Reducing quality is undesirable, because eventually a good practice run becomes the one we'll release.



So we'd like a way to do screencasts "on the fly", with decent quality, on the low end machine. As nothing is ever free, we are willing to sacrifice: we don't care too much about compression: 20GB for a 15min video is acceptable


More From » screencast

 Answers
6

I've found a satisfatory way:



It seems that mkv(**) allows for many levels of compression. By using a low compression for video, I am able to record in real time and with quality on my lowly eeepc.



To achieve that, I had to use ffmpeg. It is available in Ubuntu, but I used a version from a ppa(*):



To install:



sudo add-apt-repository ppa:jon-severinsson/ffmpeg
sudo apt-get update
sudo apt-get install ffmpeg


To record:



ffmpeg -f x11grab -r 25 -s 800x450 -i :0.0+0,60 -f alsa  -i plughw:1,0 -vcodec libx264 -crf 0 -preset ultrafast -acodec pcm_s16le file.mkv


The important part is this "preset ultrafast" that tells the encoder not to compress the video too much.



(*) apparently, Ubuntu is using a fork of ffmpeg that is not the most common in use. I tried that line with Ubuntu's ffmpeg and it did not work. However, one should note that I am still using 11.10



(**) probably mkv is a container, and this libx264 is the codec that allows different compressions ...


[#37529] Wednesday, January 18, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
etzelmortg

Total Points: 430
Total Questions: 105
Total Answers: 106

Location: Suriname
Member since Sun, Jun 13, 2021
3 Years ago
;