<?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://dePooh.com/tag/ffmpeg/feed/" rel="self" type="application/rss+xml" />
	<link>http://dePooh.com</link>
	<description>by Tracey Jaquith</description>
	<lastBuildDate>Tue, 24 Jan 2012 19:56:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>natively compiling ffmpeg, mplayer, mencoder on MacOS Lion (with x264!)</title>
		<link>http://dePooh.com/2012/01/09/natively-compiling-ffmpeg-mplayer-mencoder-on-macos-lion-with-x264/</link>
		<comments>http://dePooh.com/2012/01/09/natively-compiling-ffmpeg-mplayer-mencoder-on-macos-lion-with-x264/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 20:42:01 +0000</pubDate>
		<dc:creator>tracey pooh</dc:creator>
				<category><![CDATA[video]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://dePooh.com/?p=884</guid>
		<description><![CDATA[OK, I&#8217;ve revamped my script to compile these tools: ffmpeg ffrobe qt-faststart mplayer mencoder on MacOS Lion, using the heads of the trees, with direct encoding support for: x264 vpx / WebM http://www.archive.org/~tracey/downloads/macff.sh.txt A nice recent update to ffmpeg is &#8230; <a href="http://dePooh.com/2012/01/09/natively-compiling-ffmpeg-mplayer-mencoder-on-macos-lion-with-x264/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>OK, I&#8217;ve revamped my script to compile these tools:<br />
   ffmpeg<br />
   ffrobe<br />
   qt-faststart<br />
   mplayer<br />
   mencoder</p>
<p>on MacOS Lion, using the heads of the trees, with direct encoding support for:<br />
   x264<br />
   vpx / WebM</p>
<p><a href="http://www.archive.org/~tracey/downloads/macff.sh.txt">http://www.archive.org/~tracey/downloads/macff.sh.txt<br />
</a></p>
<p>A nice recent update to ffmpeg is the ability to decode/read Apple ProRes, too!</p>
]]></content:encoded>
			<wfw:commentRss>http://dePooh.com/2012/01/09/natively-compiling-ffmpeg-mplayer-mencoder-on-macos-lion-with-x264/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>natively compiling ffmpeg, x264, mplayer on mac (with builtin x264 and webm encoding)</title>
		<link>http://dePooh.com/2011/05/28/natively-compiling-ffmpeg-x264-mplayer-on-mac-with-builtin-x264-and-webm-encoding/</link>
		<comments>http://dePooh.com/2011/05/28/natively-compiling-ffmpeg-x264-mplayer-on-mac-with-builtin-x264-and-webm-encoding/#comments</comments>
		<pubDate>Sat, 28 May 2011 22:41:51 +0000</pubDate>
		<dc:creator>tracey pooh</dc:creator>
				<category><![CDATA[video]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[ffmpeg]]></category>

		<guid isPermaLink="false">http://www.dumbbunny.org/?p=586</guid>
		<description><![CDATA[i&#8217;m very pleased that after years of hacks here and there, all three heads of the current codebases pretty well build natively on mac (snow leopard) for x264 ffmpeg mplayer here, i&#8217;m making sure that i compile in static version &#8230; <a href="http://dePooh.com/2011/05/28/natively-compiling-ffmpeg-x264-mplayer-on-mac-with-builtin-x264-and-webm-encoding/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>i&#8217;m very pleased that after years of hacks here and there, all three heads of the current codebases pretty well build natively on mac (snow leopard) for</p>
<ul>
<li>x264</li>
<li>ffmpeg</li>
<li>mplayer</li>
</ul>
<p>here, i&#8217;m making sure that i compile in static version of libvpx (Webm) and libx264 (h.264) video packages so that the ffmpeg can easily make hiqh quality h.246 and webm transcoded videos.</p>
<p><a href="http://www.archive.org/~tracey/downloads/macff.sh">http://www.archive.org/~tracey/downloads/macff.sh</a></p>
<p>&nbsp;</p>
<p>So we can make nice (2 pass video) ~768 kb/sec 640&#215;480 derivatives like so (alter &#8220;-r &#8221; as appropriate):</p>
<p><code># make WebM<br />
ffmpeg -deinterlace -y -i 'camels.avi' -vcodec webm -fpre libvpx-360p.ffpreset  -vf scale=640:480  -r 20  -threads 2  -map_meta_data -1:0  -pass 1 -an           tmp.webm<br />
</code></p>
<p><code>ffmpeg -deinterlace -y -i 'camels.avi' -vcodec webm -fpre libvpx-360p.ffpreset  -vf scale=640:480  -r 20  -threads 2  -map_meta_data -1:0  -pass 2  -acodec libvorbis -ab 128k -ac 2 -ar 44100 tmp.webm<br />
</code></p>
<p><code>mv tmp.webm 'camels.webm'</code></p>
<p><code> </code></p>
<p>&nbsp;</p>
<p><code># make h.264</code></p>
<p><code>ffmpeg -deinterlace -y -i 'camels.avi' -vcodec libx264 -fpre libx264-IA.ffpreset  -vf scale=640:480  -r 20  -threads 2  -map_meta_data -1:0  -pass 1 -an           tmp.mp4</code></p>
<p><code><br />
ffmpeg -deinterlace -y -i 'camels.avi' -vcodec libx264 -fpre libx264-IA.ffpreset  -vf scale=640:480  -r 20  -threads 2  -map_meta_data -1:0  -pass 2  -acodec aac -strict experimental -ab 128k -ac 2 -ar 44100 tmp.mp4<br />
</code></p>
<p><code>qt-faststart tmp.mp4 'camels.mp4'<br />
</code></p>
<p>our preset files:<br />
<a href="http://www.archive.org/~tracey/downloads/libvpx-360p.ffpreset">http://www.archive.org/~tracey/downloads/libvpx-360p.ffpreset</a><br />
<a href="http://www.archive.org/~tracey/downloads/libx264-IA.ffpreset">http://www.archive.org/~tracey/downloads/libx264-IA.ffpreset</a></p>
<p>Nice things about the h.264 derivative:</p>
<ul>
<li>plays on all iphones and ipads</li>
<li>browser video tag and/or flash plugin compatible</li>
<li>starts immediately, seeks immediately even before entire video is downloaded</li>
</ul>
<p>hope this may be useful!</p>
]]></content:encoded>
			<wfw:commentRss>http://dePooh.com/2011/05/28/natively-compiling-ffmpeg-x264-mplayer-on-mac-with-builtin-x264-and-webm-encoding/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Star Wars re-remastered to high quality 1977 version!</title>
		<link>http://dePooh.com/2010/04/18/star-wars-re-remastered-to-high-quality-1977-version/</link>
		<comments>http://dePooh.com/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 &#8230; <a href="http://dePooh.com/2010/04/18/star-wars-re-remastered-to-high-quality-1977-version/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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://dePooh.com/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://dePooh.com/2009/09/25/ffmpeg-for-time-lapse-sets-of-images-and-even-archiving/</link>
		<comments>http://dePooh.com/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 &#8230; <a href="http://dePooh.com/2009/09/25/ffmpeg-for-time-lapse-sets-of-images-and-even-archiving/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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://dePooh.com/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://dePooh.com/2009/04/01/ffmpeg-building-on-mac-intelx386/</link>
		<comments>http://dePooh.com/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!) &#8230; <a href="http://dePooh.com/2009/04/01/ffmpeg-building-on-mac-intelx386/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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://dePooh.com/2009/04/01/ffmpeg-building-on-mac-intelx386/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

