Skip to main content

Creating Screencasts on Ubuntu

Add repositories


System --> Administration --> Software Sources
Tick "Community maintained Open Source software (universe)
Tick "Software restricted by copyright or legal issues (multiverse)"
Close
Reload



Install QEMU, avidemux, ffmpeg2theora, audacity on the host


$ sudo apt-get install qemu avidemux ffmpeg2theora audacity
 
Alternatively (preferably) qemu could be compiled from source. It's not nearly as hard as it sounds. There's a great guide to compiling QEMU on the Hampshire LUG wiki. Doing this means you can enable the (closed source) KQEMU module which dramatically improves performance of QEMU.


Install xvidcap
Home page: http://xvidcap.sf.net/
  • Download the .deb
Visit download page: http://sourceforge.net/project/showfiles.php?group_id=81535&package_id=83441

Download xvidcap_1.1.4_i386.deb from mirror.

$ wget -c http://kent.dl.sourceforge.net/sourceforge/xvidcap/xvidcap_1.1.4_i386.deb
  • Install the .deb
$ sudo dpkg -i xvidcap_1.1.4_i386.deb
 
Run the XVIDCap Screen capture
to capture a screen cast. 


Run the XVIDCap from the Applications -> Sound & Video -> XVidCap Screen Capture


Next select the screen area you want to capture either by resizing the red rectangle appeared under the XVid Cap. or by clicking the "Select rectangular area to capture" button 


Then click on the  red circular button to start capture. and stop button to stop the capture.


The saved capture file will be a .mpeg file which will be saved in your home directory by default it will be "test-0000.mpeg" 
 

Comments

Popular posts from this blog

Real time Sinhala Unicode converter

Following Sinhala unicode translater is a very useful tool for all the Sinhala web users who needs a quick sinhala unicode typing. The main advantage of this tool is that user can type the sinhala characters using English (commonly known as Singlish) Use the following link to access the online unicode converter. http://www.ucsc.cmb.ac.lk/ltrl/services/feconverter/t1.html

Convert MPEG to AVI using mencoder in Ubuntu

1. Install mencoder using : $ sudo apt-get install mencoder 2. Move to the folder which contains the .mpeg /.mpg file 3. run the following command :         mencoder INPUTFILE.mpeg -ofps 25 -ovc xvid -oac mp3lame -lameopts abr:br=192 -srate 48000 -xvidencopts fixed_quant=4 -o OUTPUT.avi ** in the example I'm converting INPUTFILE.mpeg to OUTPUT.avi