Record more than 45 seconds of audio or video on the XO laptop

240Seconds
If you go into the Record activity on the XO laptop, you'll find that you can only record a maximum of 45 seconds of video and audio. But since almost everything in this little green wonder is written in Python, it's very easy to fix this. Open up the Terminal activity, cd to /usr/share/activities/Record.activity, and then use su to become root:

$ cd /usr/share/activities/Record.activity
$ su
#

Now, make a backup copy of constants.py:

# cp constants.py constants.py.orig

Open constants.py in vi, and look for these lines:

	DURATION_15 = 15
	DURATION_30 = 30
	DURATION_45 = 45

Add the following line right after the DURATION_45 line (you can put whatever you want instead of 240--this is the number of seconds):

	DURATION_240 =240

Next, find these lines:

	DURATIONS.append(DURATION_15)
	DURATIONS.append(DURATION_30)
	DURATIONS.append(DURATION_45)

And add the following line right after the DURATION_45 line:

	DURATIONS.append(DURATION_240)

Stop the Record activity if it's already running, restart it, and you'll now have an option to record for more than 45 seconds.

Posted by Brian Jepson | Dec 19, 2007 05:05 PM
Education, Linux, olpc | Permalink | Comments (1) Bookmark and Share

Recent Entries

Comments

Newest comments listed first.

Posted by: SR on January 4, 2008 at 8:14 PM

thanks this is super-helpful!


Leave a comment



Bloggers

Welcome to the Hacks Blog!

Brian Jepson.Brian Jepson


Jason Striegel.Jason Striegel


Philip Torrone.Phillip Torrone



See all of the books in the Hacks Series!
Advertise here.

Recent Posts

www.flickr.com
photos in Hacks More photos in Hacks

Most read entries (last 30 days)