<?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>Dumb Bunny Productions &#187; ffmpeg</title>
	<atom:link href="http://www.dumbbunny.org/tag/ffmpeg/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dumbbunny.org</link>
	<description>by Tracey Jaquith</description>
	<lastBuildDate>Thu, 17 Jun 2010 08:24:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Star Wars re-remastered to high quality 1977 version!</title>
		<link>http://www.dumbbunny.org/2010/04/18/star-wars-re-remastered-to-high-quality-1977-version/</link>
		<comments>http://www.dumbbunny.org/2010/04/18/star-wars-re-remastered-to-high-quality-1977-version/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 09:21:30 +0000</pubDate>
		<dc:creator>tracey pooh</dc:creator>
				<category><![CDATA[video]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[remaster]]></category>
		<category><![CDATA[star wars]]></category>

		<guid isPermaLink="false">http://www.dumbbunny.org/?p=252</guid>
		<description><![CDATA[So I wanted to sit down in my updated home theatre and watch one of my favorite films, &#8220;Star Wars&#8221;.  Problem is, I have two versions on DVD, and neither are ideal.  The 2004 DVD version has remastered audio and video, but also added scenes and changes I really don&#8217;t like.  The [...]]]></description>
			<content:encoded><![CDATA[<p>So I wanted to sit down in my updated home theatre and watch one of my favorite films, &#8220;Star Wars&#8221;.  Problem is, I have two versions on DVD, and neither are ideal.  The 2004 DVD version has remastered audio and video, but also added scenes and changes I really don&#8217;t like.  The 1977 DVD version is a poor quality transfer and encoding.</p>
<p>So I <strong> combined the 1977 and 2004 DVDs</strong> into the highest quality 1977 version of the film!   I show all my scripts and techniques here, too, so you can make the same version from your two DVDs, too!<br />
<a href="http://www.archive.org/details/reremaster">http://www.archive.org/details/reremaster</a></p>
<div class="wp-caption alignleft" style="width: 434px"><a href="http://www.archive.org/details/reremaster"><img title="star wars comparison of two films" src="http://www.archive.org/download/reremaster/both10107-small.jpg" alt="star wars comparison of two films" width="424" height="480" /></a><p class="wp-caption-text">star wars comparison of two films</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.dumbbunny.org/2010/04/18/star-wars-re-remastered-to-high-quality-1977-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ffmpeg for time-lapse, sets of images, and even *archiving*!</title>
		<link>http://www.dumbbunny.org/2009/09/25/ffmpeg-for-time-lapse-sets-of-images-and-even-archiving/</link>
		<comments>http://www.dumbbunny.org/2009/09/25/ffmpeg-for-time-lapse-sets-of-images-and-even-archiving/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 03:49:36 +0000</pubDate>
		<dc:creator>tracey pooh</dc:creator>
				<category><![CDATA[video]]></category>
		<category><![CDATA[ffmpeg]]></category>

		<guid isPermaLink="false">http://www.dumbbunny.org/?p=247</guid>
		<description><![CDATA[
I now use the FFMPEG package compiled locally on my Mac Leopard laptop.


If you want to take a bunch of JPEG images, you can turn them into a &#8220;motion JPEG&#8221; AVI video file (which is ideal for time-lapse).  What&#8217;s neat about ffmpeg, is you can turn a directory of JPEGs into an AVI and [...]]]></description>
			<content:encoded><![CDATA[<p>
I now use the <a href="http://ffmpeg.org">FFMPEG</a> <a href="http://trac.macports.org/browser/trunk/dports/multimedia/ffmpeg">package</a> compiled locally on my Mac Leopard laptop.
</p>
<p>
If you want to take a bunch of JPEG images, you can turn them into a &#8220;motion JPEG&#8221; AVI video file (which is ideal for time-lapse).  What&#8217;s neat about ffmpeg, is you can turn a directory of JPEGs into an AVI and later recreate the JPEGs from the AVI.
</p>
<p>
  Thus, I can take 100-1000 JPEG images from a &#8220;shoot&#8221; and create a video time-lapse of all the JPEG images in a given subdir in a command-line shell (terminal):<br />
    <code>      ffmpeg -r 6 -i "%04d.jpg" -an -vcodec copy out.avi</code></p>
<p>
  Even cooler, you can go directly back to *the same JPEG* images like so (this is where you can see it is a lossless conversion from JPEGs to Motion JPEG and back):<br />
<code>    ffmpeg -i out.avi -vcodec copy "%04d.jpg"<br />
</code>
</p>
<p>&#8220;-r 6&#8243; is the framerate, ie: &#8220;make the video play 6 JPEG images per second&#8221;.<br/><br />
It doesn&#8217;t get much nicer than that!  Not to mention, the encoding is FAST!  I recently moved from mencoder/mplayer to ffmpeg since you can specify a complete copy of the input JPEGs (lossless from the source) as well as compress them down a bit (as you like).</p>
<p>For the lossless conversion, the (not entirely obvious) *key* to success is to use the &#8220;-vcodec copy&#8221; *after* the source file(s).
</p>
<p>
  You can get this running on Windows with Cygwin, Mac with terminal, and any linux distribution like Ubuntu.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dumbbunny.org/2009/09/25/ffmpeg-for-time-lapse-sets-of-images-and-even-archiving/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ffmpeg building on mac intel/x386</title>
		<link>http://www.dumbbunny.org/2009/04/01/ffmpeg-building-on-mac-intelx386/</link>
		<comments>http://www.dumbbunny.org/2009/04/01/ffmpeg-building-on-mac-intelx386/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 05:13:36 +0000</pubDate>
		<dc:creator>tracey pooh</dc:creator>
				<category><![CDATA[video]]></category>
		<category><![CDATA[ffmpeg]]></category>

		<guid isPermaLink="false">http://www.dumbbunny.org/?p=113</guid>
		<description><![CDATA[ffmpeg v0.5 just came out.  it&#8217;s the bomb.  it&#8217;s got tons of fixes and massive amounts of new codecs that it can read.  for example, it can now decode my professional filmmaker brother&#8217;s &#8220;DVC ProHD&#8221; highly proprietary (and massive bitrate!) format!   it can also decode flac and 24-bit flac.  [...]]]></description>
			<content:encoded><![CDATA[<p>ffmpeg v0.5 just came out.  it&#8217;s the bomb.  it&#8217;s got tons of fixes and massive amounts of new codecs that it can read.  for example, it can now decode my professional filmmaker brother&#8217;s &#8220;DVC ProHD&#8221; highly proprietary (and massive bitrate!) format!   it can also decode flac and 24-bit flac.  (encoding flac is disappointing though).</p>
<p>at any rate!   macports is a great way to get it installed on your mac.<br />
the current way of setting up macports and then doing<br />
   sudo port install ffmpeg<br />
works fine on my PPC at work (oddly &#8212; pretty old computer now) but not my Air (intel x386)</p>
<p>So I set out to find the fixes needed to make it work.  Here they are:</p>
<p>step 1: install  macports &#8212; see http://www.macports.org/install.php</p>
<p>sudo port install x264 +noasm   # for i386 (not needed for PPC)<br />
sudo port fetch ffmpeg<br />
sudo port checksum ffmpeg<br />
sudo port extract ffmpeg<br />
sudo port patch ffmpeg<br />
remove &#8220;&#8211;enable-shared&#8221; from /opt/local/var/macports/sources/rsync.macports.org/release/ports/multimedia/ffmpeg/Portfile<br />
sudo port install ffmpeg</p>
<p><strong>[May update]</strong> I think the packages are improving so some of the above steps may not be necessary, depending on your Mac model, xcode version, and such.  So I&#8217;d suggest just trying &#8220;sudo port install ffmpeg&#8221; first to see if it works and try some tweaks above if that doesn&#8217;t work</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dumbbunny.org/2009/04/01/ffmpeg-building-on-mac-intelx386/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
