<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>A Place for my head &#187; ubuntu</title>
	<atom:link href="http://gnufied.org/category/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://gnufied.org</link>
	<description>On Ruby, Rails, Concurrency and fiction</description>
	<lastBuildDate>Mon, 10 Oct 2011 06:49:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Screencasting from Linux/Ubuntu</title>
		<link>http://gnufied.org/2008/07/14/screencasting-from-linuxubuntu/</link>
		<comments>http://gnufied.org/2008/07/14/screencasting-from-linuxubuntu/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 19:08:59 +0000</pubDate>
		<dc:creator>Hemant</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://gnufied.org/2008/07/14/screencasting-from-linuxubuntu/</guid>
		<description><![CDATA[Sorry for yet another do this &#8211; do that, crap of screencasting in Linux. Well, most of the tools out there simply doesn&#8217;t work (yeah, I have tried plenty of them). Finally, I have settled down on ffmpeg, which works perfectly well for screencasts with both audio and video. Here are step by step instructions [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry for yet another do this &#8211; do that, crap of screencasting in Linux. Well, most of the tools out there simply doesn&#8217;t work (yeah, I have tried plenty of them).</p>
<p>Finally, I have settled down on ffmpeg, which works perfectly well for screencasts with both audio and video.</p>
<p>Here are step by step instructions on How to make Screencasts in Linux(Ubuntu 8.04 in my case, but you get the idea) using ffmpeg.</p>
<ul>
<li>  Get ffmpeg dependencis :

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> build-essential subversion zlib1g-dev \
  checkinstall libgpac-dev libfaad-dev libfaac-dev liblame-dev \
  libtheora-dev libvorbis-dev gpac</pre></div></div>

</li>
<li> Get X11 dependencies :

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> libx11-dev xlibs-static-dev \
  x11proto-input-dev</pre></div></div>

</li>
<li> Get ffmpeg code from svn, compile and install:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">svn</span> checkout <span style="color: #c20cb9; font-weight: bold;">svn</span>:<span style="color: #000000; font-weight: bold;">//</span>svn.mplayerhq.hu<span style="color: #000000; font-weight: bold;">/</span>ffmpeg<span style="color: #000000; font-weight: bold;">/</span>trunk <span style="color: #c20cb9; font-weight: bold;">ffmpeg</span>
<span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #c20cb9; font-weight: bold;">ffmpeg</span>
.<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--prefix</span>=<span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">ffmpeg</span> <span style="color: #660033;">--enable-gpl</span> <span style="color: #660033;">--enable-postproc</span> \
  <span style="color: #660033;">--enable-libvorbis</span> <span style="color: #660033;">--enable-libtheora</span> <span style="color: #660033;">--disable-debug</span> \
  <span style="color: #660033;">--enable-libmp3lame</span> <span style="color: #660033;">--enable-libfaad</span> <span style="color: #660033;">--enable-libfaac</span> \
  <span style="color: #660033;">--enable-pthreads</span> <span style="color: #660033;">--enable-x11grab</span>
<span style="color: #c20cb9; font-weight: bold;">make</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></pre></div></div>

</li>
<li> Record high quality screencasts with:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ffmpeg</span> <span style="color: #660033;">-f</span> oss <span style="color: #660033;">-i</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>dsp <span style="color: #660033;">-f</span> x11grab <span style="color: #660033;">-s</span> 1024x768 <span style="color: #660033;">-r</span> ntsc \
  <span style="color: #660033;">-sameq</span> <span style="color: #660033;">-i</span> :<span style="color: #000000;">0.0</span> foo.avi</pre></div></div>

</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://gnufied.org/2008/07/14/screencasting-from-linuxubuntu/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

