<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Converting Videos with Rails: Installing FFMPEG</title>
	<atom:link href="http://jimneath.org/2008/06/02/converting-videos-with-rails-installing-ffmpeg/feed/" rel="self" type="application/rss+xml" />
	<link>http://jimneath.org/2008/06/02/converting-videos-with-rails-installing-ffmpeg/</link>
	<description>Ruby on Rails, Javascript, CSS and Standards</description>
	<pubDate>Fri, 21 Nov 2008 16:15:10 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Scott Motte</title>
		<link>http://jimneath.org/2008/06/02/converting-videos-with-rails-installing-ffmpeg/#comment-739</link>
		<dc:creator>Scott Motte</dc:creator>
		<pubDate>Wed, 12 Nov 2008 21:34:06 +0000</pubDate>
		<guid isPermaLink="false">http://jimneath.org/?p=39#comment-739</guid>
		<description>You know what, I think ffmpeg can be installed now (at least on ubuntu hardy) simply via:

sudo apt-get install ffmpeg</description>
		<content:encoded><![CDATA[<p>You know what, I think ffmpeg can be installed now (at least on ubuntu hardy) simply via:</p>
<p>sudo apt-get install ffmpeg</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Motte</title>
		<link>http://jimneath.org/2008/06/02/converting-videos-with-rails-installing-ffmpeg/#comment-737</link>
		<dc:creator>Scott Motte</dc:creator>
		<pubDate>Wed, 12 Nov 2008 06:15:12 +0000</pubDate>
		<guid isPermaLink="false">http://jimneath.org/?p=39#comment-737</guid>
		<description>Here are some problems I ran into as well.

1. With my /etc/apt/sources.list on ubuntu hardy, I needed to add 'multiverse' to the end of each of the lines so it looked like the following

&lt;code&gt;
deb http://archive.ubuntu.com/ubuntu/ hardy main restricted universe multiversedeb-src http://archive.ubuntu.com/ubuntu/ hardy main restricted universe multiverse

deb http://archive.ubuntu.com/ubuntu/ hardy-updates main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ hardy-updates main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu hardy-security main restricted universe multiverse
deb-src http://security.ubuntu.com/ubuntu hardy-security main restricted universe multiverse
&lt;/code&gt;

Then I ran sudo aptitude update to let ubuntu know I updated my sources list.

2. I couldn't find libfaad2-dev for ubuntu hardy so I installed libfaad-dev instead using apt-get install</description>
		<content:encoded><![CDATA[<p>Here are some problems I ran into as well.</p>
<p>1. With my /etc/apt/sources.list on ubuntu hardy, I needed to add &#8216;multiverse&#8217; to the end of each of the lines so it looked like the following</p>
<p><code><br />
deb <a href="http://archive.ubuntu.com/ubuntu/" rel="nofollow">http://archive.ubuntu.com/ubuntu/</a> hardy main restricted universe multiversedeb-src <a href="http://archive.ubuntu.com/ubuntu/" rel="nofollow">http://archive.ubuntu.com/ubuntu/</a> hardy main restricted universe multiverse</p>
<p>deb <a href="http://archive.ubuntu.com/ubuntu/" rel="nofollow">http://archive.ubuntu.com/ubuntu/</a> hardy-updates main restricted universe multiverse<br />
deb-src <a href="http://archive.ubuntu.com/ubuntu/" rel="nofollow">http://archive.ubuntu.com/ubuntu/</a> hardy-updates main restricted universe multiverse</p>
<p>deb <a href="http://security.ubuntu.com/ubuntu" rel="nofollow">http://security.ubuntu.com/ubuntu</a> hardy-security main restricted universe multiverse<br />
deb-src <a href="http://security.ubuntu.com/ubuntu" rel="nofollow">http://security.ubuntu.com/ubuntu</a> hardy-security main restricted universe multiverse<br />
</code></p>
<p>Then I ran sudo aptitude update to let ubuntu know I updated my sources list.</p>
<p>2. I couldn&#8217;t find libfaad2-dev for ubuntu hardy so I installed libfaad-dev instead using apt-get install</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://jimneath.org/2008/06/02/converting-videos-with-rails-installing-ffmpeg/#comment-420</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 07 Jul 2008 12:54:29 +0000</pubDate>
		<guid isPermaLink="false">http://jimneath.org/?p=39#comment-420</guid>
		<description>Here are a couple of problems I ran into and how I solved them:

1. When running ./configure, some libraries were not found. For each missing lib, I went to http://packages.ubuntu.com/ and searched for the lib name, then did an "apt-get install" for the most likely-sounding module.

2. When running make, the libx264 library caused some errors so I simply reran ./configure without the --enable-libx264 flag.

3. When I tested with "ffmpeg -v" the newly installed libs weren't found. I ran ldconfig to update the libs cache and that solved it.

Hope this helps somebody!</description>
		<content:encoded><![CDATA[<p>Here are a couple of problems I ran into and how I solved them:</p>
<p>1. When running ./configure, some libraries were not found. For each missing lib, I went to <a href="http://packages.ubuntu.com/" rel="nofollow">http://packages.ubuntu.com/</a> and searched for the lib name, then did an &#8220;apt-get install&#8221; for the most likely-sounding module.</p>
<p>2. When running make, the libx264 library caused some errors so I simply reran ./configure without the &#8211;enable-libx264 flag.</p>
<p>3. When I tested with &#8220;ffmpeg -v&#8221; the newly installed libs weren&#8217;t found. I ran ldconfig to update the libs cache and that solved it.</p>
<p>Hope this helps somebody!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://jimneath.org/2008/06/02/converting-videos-with-rails-installing-ffmpeg/#comment-417</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 07 Jul 2008 10:43:59 +0000</pubDate>
		<guid isPermaLink="false">http://jimneath.org/?p=39#comment-417</guid>
		<description>Thanks for this great post (all 3 parts)!

Today I decided to write an online video conversion tool as part of a pet project of mine and I thought, "hey, this is a good excuse to learn Ruby on Rails!" Then about 5mins later I found your blog post. Fits the bill perfectly!</description>
		<content:encoded><![CDATA[<p>Thanks for this great post (all 3 parts)!</p>
<p>Today I decided to write an online video conversion tool as part of a pet project of mine and I thought, &#8220;hey, this is a good excuse to learn Ruby on Rails!&#8221; Then about 5mins later I found your blog post. Fits the bill perfectly!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Converting Videos with Rails: Converting the Video &#124; Uncategorized</title>
		<link>http://jimneath.org/2008/06/02/converting-videos-with-rails-installing-ffmpeg/#comment-261</link>
		<dc:creator>Converting Videos with Rails: Converting the Video &#124; Uncategorized</dc:creator>
		<pubDate>Tue, 03 Jun 2008 13:22:34 +0000</pubDate>
		<guid isPermaLink="false">http://jimneath.org/?p=39#comment-261</guid>
		<description>[...] you&#8217;ve installed FFMPEG. Now it&#8217;s time to move onto converting the video. For this we&#8217;re going to be using a [...]</description>
		<content:encoded><![CDATA[<p>[...] you&#8217;ve installed FFMPEG. Now it&#8217;s time to move onto converting the video. For this we&#8217;re going to be using a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Building a Social Network Site in Rails &#124; Ruby on Rails</title>
		<link>http://jimneath.org/2008/06/02/converting-videos-with-rails-installing-ffmpeg/#comment-253</link>
		<dc:creator>Building a Social Network Site in Rails &#124; Ruby on Rails</dc:creator>
		<pubDate>Mon, 02 Jun 2008 10:33:24 +0000</pubDate>
		<guid isPermaLink="false">http://jimneath.org/?p=39#comment-253</guid>
		<description>[...] How to Install FFMPEG [...]</description>
		<content:encoded><![CDATA[<p>[...] How to Install FFMPEG [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
