LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   How to record my desktop?? (https://www.linuxquestions.org/questions/linux-software-2/how-to-record-my-desktop-517410/)

Hungry ghost 11-15-2011 07:33 PM

Quote:

Originally Posted by Witold1983 (Post 4524949)
Please tell how make it to record vidieo - it says that I must have server (Connection refused) what write into server field?

I haven't used this program in years, but from what I read here, you must install x11vnc and execute the following command before launching vnc2swf:

Code:

x11vnc -quiet -localhost -viewonly -nopw -bg
You can find more about this error (and possible solutions) here.

Regards.

vharishankar 11-15-2011 09:14 PM

This is also a good program for desktop recording:

http://recordmydesktop.sourceforge.net/about.php

There's also a front-end for it:

gtk-recordmydesktop

Witold1983 11-16-2011 02:42 AM

Thnx
 
Thnx for reply I'll try them

fukawi1 11-16-2011 03:09 AM

Just an alternative here.
You can record a screen session from the command line with ffmpeg. To any format.

An example that I use
Code:

(reverse-i-search)`ffm':  ffmpeg -f x11grab -r 25 -s 4480x1080 -i :0.0 -f flv screen_cap.flv
Code:

man ffmpeg
will tell you what to change to get it recording video and audio to the formats you wish.
(keep in mind, you have to have the relevant codecs installed)

fortran 11-16-2011 03:19 AM

apt-get install xvidcap
for open software - $ xvidcap
Now expand red rectangular area and start recording. File will be stored in root.
OR
Recording by ffmpeg
********************
ffmpeg -f alsa -ac 2 -i pulse -f x11grab -r 30 -s 1440x900 -i :0.0 -acodec pcm_s16le -vcodec libx264 output.avi
To stop Recording press q

for no mouse
ffmpeg -f alsa -ac 2 -i pulse -f x11grab -r 30 -s 1440x900 -i :0.0+nomouse -acodec pcm_s16le -vcodec libx264 output.avi

for recording any particular window, find window's co-ordinates & location
xwininfo | grep -e Width -e Height -e Absolute
ffmpeg -f alsa -ac 2 -i pulse -f x11grab -r 30 -s 650x500 -i :0.0+x,y -acodec pcm_s16le -vcodec libx264 output.avi
where 650x500 size of window & x,y coordinates of where you click to find details.

Witold1983 11-16-2011 02:36 PM

I had xcapvid it records on my computer 7frames per second, later I cannot change it with kdenlive


All times are GMT -5. The time now is 05:20 PM.