LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Best Linux app for video recording the Desktop? (https://www.linuxquestions.org/questions/linux-newbie-8/best-linux-app-for-video-recording-the-desktop-719089/)

linus72 04-14-2009 03:04 PM

Best Linux app for video recording the Desktop?
 
I just wanna be able to record my Desktop-nothing fancy-don't need a full video editing suite.
Thanks.

i92guboj 04-14-2009 03:27 PM

There's recordmydesktop and xvidcap.

arckane 04-14-2009 04:30 PM

I second recordmydesktop :)

dv502 04-15-2009 12:38 AM

If you want to be geeky, try ffmpeg. Here is the code

Code:

ffmpeg -f x11grab -s 1024x768 -r 25 -b 1000 -g 300 -i :0.0 -qmin 2 -qmax 5 outout.mpg
-r is the frame rate, 25 to 29 is good enough

-s is the screen resolution to capture. In this example the entire desktop is captured. To get the screen size type xwininfo and then click on the desktop. In the output, the last line -geometry is where the screen resolution is.

If you wish to capture audio with the screen capture, type this
Code:

ffmpeg -f x11grab -s 1024x768 -r 25 -b 1000 -g 300 -i :0.0 -qmin 2 -qmax 5 -f oss -i /dev/dsp output.mpg

Hope this helps.

speck 04-15-2009 12:53 AM

I use recordmydesktop. Running the command below lets you capture a single window just by clicking on it. It will also capture the entire screen if you click the root window (desktop).

Code:

recordmydesktop --channels 2 --fps 30 --windowid $(xwininfo | awk '/Window id:/ {print $4}')


All times are GMT -5. The time now is 05:18 AM.