Monday, June 1, 2009

A ScreenCast on Ubuntu : Software Installation process of XVIDCAP

For screencasts, xvidcap is a good choice. When I installed it using "apt-get install xvidcap", I couldn't record the screencast, xvidcap window used to disappear as soon as when clicked on record button, I used to get segmentation fault error, when output was sent to text file using "xvidcap > log.txt"
After spending long time on google, I found the following solution.

1. Don't use package manager to install XVIDCAP. Download the latest version from sourceforge.net. The latest available version is 1.1.7. Don't install the .deb it did not work for me. Install the tar.gz archive.

2. Make sure the the following libraries are installed on your machine
a. libglade2-dev
b. libxmu-dev
If they are not, install them using "sudo apt-get install libglade2-dev libxmu-dev"

3. Extract the downloaded archive file and run the following three commands, plz make sure that you are in the folder where you have extracted the archive :
a. ./configure
b. make
c. sudo make install (here you need to use the sudo because this command would install files in the src folder).

To run xvidcap, with audio enabled
xvidcap --audio true --file /home/amit/Desktop/tutorial.mpeg


Cheers!!

~~Amit Jain~~
amitjain1982@gmail.com

No comments:

Post a Comment