On 14/11/10 07:25, Antonio Orvieto wrote:
How can i record the screen on opensolaris (something like Camtasia Studio on 
Windows)
hoe can I install it?
You can use ffmpeg for that (it's available in SFE). You can run something like (chose resolution which you need):

ffmpeg -f x11grab -r 25 -s 800x600 -i :0.0 screen.mpg

Or like this:

ffmpeg -f x11grab -r 25 -s 800x600 -i :0.0+10,20 screen.mpg

You can check what codecs are available with *ffmpeg -formats
*(I tried recording in theora - but it didn't work good for some reason. Anyhow the best option is to record in uncompressed format first, because compressing it on the fly might be to heavy for the machine). You can increase framerate (-r option) to make the video smoother. And there are a whole bunch of quality related options in ffmpeg which affect the resulting video.

Regards,

Hillel.
_______________________________________________
install-discuss mailing list
[email protected]
http://mail.opensolaris.org/mailman/listinfo/install-discuss

Reply via email to