<?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>The eflow blog &#187; jvc</title>
	<atom:link href="http://blog.eflow.org/archives/tag/jvc/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.eflow.org</link>
	<description>Insert some amazingly witty tagline here</description>
	<lastBuildDate>Fri, 09 Dec 2011 18:59:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
		<item>
		<title>Converting Everio MOV Files to FLV Using FFMPEG</title>
		<link>http://blog.eflow.org/archives/267</link>
		<comments>http://blog.eflow.org/archives/267#comments</comments>
		<pubDate>Fri, 15 Jan 2010 01:07:12 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[babble]]></category>
		<category><![CDATA[everio]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[flv]]></category>
		<category><![CDATA[jvc]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mov]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.eflow.org/?p=267</guid>
		<description><![CDATA[I struggled with getting the mpeg2 movies from my JVC Everio HD camera into a smaller file and up onto a video sharing site with high quality. My first attempt was with Handbrake. That converted the MOV to an MP4 very nicely. However, I wasn&#8217;t able to upload those to Blip.tv and have them convert [...]]]></description>
			<content:encoded><![CDATA[<p>I struggled with getting the mpeg2 movies from my JVC Everio HD camera into a smaller file and up onto a video sharing site with high quality.</p>
<p>My first attempt was with <a href="http://handbrake.fr/">Handbrake</a>.  That converted the MOV to an MP4 very nicely.  However, I wasn&#8217;t able to upload those to <a href="http://blip.tv">Blip.tv</a> and have them convert successfully every time to an flv.  Blip was timing out on the longer videos and poorly converting the smaller ones.</p>
<p>I then decided to try the command line ffmpeg.  There weren&#8217;t any gui tools around it that I found in the repo&#8217;s, so I just tried the standard </p>
<blockquote><p>
ffmpeg -i inputfilename.mov outputfilename.flv
</p></blockquote>
<p>but that <strong>did not work</strong>.  Apparently JVC doesn&#8217;t put all the right properties into the mpg2 for ffmpeg to automatically pick up the properties because I kept getting a Floating point exception. </p>
<p>I assumed I needed to just manually set the full command with all the different video and audio settings, but I didn&#8217;t know what those should be.</p>
<p>After a bit more googling I found <a href="http://winff.org">winff</a>.  From that app I copied the command line arguments over, tweaked them a bit, and came out with this:</p>
<blockquote><p>
ffmpeg -i INPUTFILENAME.mov -vcodec libx264 -deinterlace -vpre hq -crf 22 -r 29.97 -s 960&#215;540 -aspect 16:9 -bf 2 -b 2000kb -ac 1 -ar 22050 -ab 96k OUTPUTFILENAME.flv
</p></blockquote>
<p>The trick is to use the libx264 codec instead of the flv one.  After uploading these converted movies to <a href="http://blip.tv">Blip.tv</a> I was pleased with the results.</p>
 <img src="http://blog.eflow.org/wp-content/plugins/feed-statistics.php?view=1&post_id=267" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://blog.eflow.org/archives/267/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

