<?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; coding</title>
	<atom:link href="http://dePooh.com/tag/coding/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>Sony P-Series running 10.10 Meerkat Ubuntu</title>
		<link>http://dePooh.com/2010/10/24/sony-p-series-running-10-10-meerkat-ubuntu/</link>
		<comments>http://dePooh.com/2010/10/24/sony-p-series-running-10-10-meerkat-ubuntu/#comments</comments>
		<pubDate>Sun, 24 Oct 2010 10:04:05 +0000</pubDate>
		<dc:creator>tracey pooh</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[coding]]></category>

		<guid isPermaLink="false">http://www.dumbbunny.org/?p=437</guid>
		<description><![CDATA[Sony P-Series (specifically: win7 era P788K, 8&#8243; 1600&#215;768 display, 2B RAM, GMA 500 graphics, 64GB SSD) I got this supercute mini-laptop last year I had been using Ubuntu linux Lucid (10.4) and just upped to Meerkat (10.10). (Both were Netbook &#8230; <a href="http://dePooh.com/2010/10/24/sony-p-series-running-10-10-meerkat-ubuntu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Sony P-Series<br />
(specifically: win7 era P788K, 8&#8243; 1600&#215;768 display, 2B RAM, GMA 500 graphics, 64GB SSD)</p>
<p>I got this supercute <a href="http://www.sonystyle.com/webapp/wcs/stores/servlet/ProductDisplay?storeId=10151&amp;catalogId=10551&amp;langId=-1&amp;productId=8198552921666067697">mini-laptop</a> last year</p>
<p>I had been using Ubuntu linux Lucid (10.4) and just upped to Meerkat (10.10).  (Both were Netbook Edition).<br />
I&#8217;d never gotten video acceleration to work before and was stuck w/ ~1-5 fps video most of the time.</p>
<p>Doing the widely suggested:</p>
<p><code>sudo add-apt-repository ppa:gma500/ppa &#038;&#038; sudo add-apt-repository ppa:gma500/fix &#038;&#038; sudo apt-get update &#038;&#038; sudo apt-get install poulsbo-driver-2d poulsbo-driver-3d poulsbo-config<br />
</code></p>
<p>bricked my vaio 8-( well, i mean, it gave me root login w/o X/windows ability but&#8230; 8-p)<br />
but 2-3 apt-get remove, reinstalls, hunting google later, found the apparent saviour (I did 1000mb from 2000mb recommended <a href="http://www.webupd8.org/2010/05/fix-intel-gma500-poulsbo-graphics-in.html">here</a>):</p>
<p><code>sudo nano /etc/default/grub<br />
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash mem=1000mb acpi_osi=Linux"<br />
sudo update-grub</code></p>
<p>booted clean! *immediately* got ability to use proprietary vaio accessory to output VGA to external monitor (a first!) and brightness up/down hotkeys working. (brightness to work even at all!)<br />
but best of all, video and appearance *and everything* (moving windows, starting applications) was *so much faster* visually!</p>
<p><code>cmd-line video playback with:<br />
sudo apt-get remove mplayer<br />
sudo apt-get install gnome-mplayer gecko-mediaplayer</code></p>
<p>so this is *all* i have done, aside from starting w/ vanilla install (with just a few changes to help w/ SSD instead of HD) of lucid upgraded to meerkat.<br />
(personally, i&#8217;m still working on getting suspend/resume to work (seems to work but the display doesn&#8217;t come back on &#8212; been like this the whole time) and to get hibernate to work &#8212; prolly will go with some kinda memory stick to dump to)</p>
<p>UPDATE!</p>
<p>suspend/resume working now with change to suggested &#8220;gma500 fix&#8221;</p>
<p><code>sudo add-apt-repository ppa:gma500/ppa &amp;&amp; sudo add-apt-repository ppa:gma500/fix &amp;&amp; sudo apt-get update &amp;&amp; sudo apt-get install poulsbo-driver-2d poulsbo-driver-3d poulsbo-config</code></p>
<p>I think this additional suggestion may have fixed sleep/resume (but it&#8217;s possible it was just the gma500/fix related packages in live above:</p>
<p>sudo mv /usr/lib/pm-utils/sleep.d/99video /usr/lib/pm-utils/99video</p>
]]></content:encoded>
			<wfw:commentRss>http://dePooh.com/2010/10/24/sony-p-series-running-10-10-meerkat-ubuntu/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Updated Site!</title>
		<link>http://dePooh.com/2010/06/05/updated-site/</link>
		<comments>http://dePooh.com/2010/06/05/updated-site/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 08:27:54 +0000</pubDate>
		<dc:creator>tracey pooh</dc:creator>
				<category><![CDATA[website]]></category>
		<category><![CDATA[coding]]></category>

		<guid isPermaLink="false">http://www.dumbbunny.org/?p=362</guid>
		<description><![CDATA[Woohoo! So after over a year of owning this site w/ little more than 10 posts and pages geared towards AIDS LifeCycle fundraising and training, I&#8217;ve finally merged my personal site into this site and updated it.  So now this &#8230; <a href="http://dePooh.com/2010/06/05/updated-site/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Woohoo!</strong></p>
<p>So after over a year of owning this site w/ little more than 10 posts and pages geared towards AIDS LifeCycle fundraising and training, I&#8217;ve finally merged my personal site into this site and updated it.  So now this is the</p>
<p><strong>New home of Tracey Jaquith and Dumb Bunny Productions.</strong></p>
<p>I&#8217;ve got new a new navigation layout and structure, updated CSS and style, and about 20 main info pages added.  I&#8217;ll be tweaking it a bit, but the biggest changeover is now live!  This site aims to blend blogging with a more traditional website.</p>
]]></content:encoded>
			<wfw:commentRss>http://dePooh.com/2010/06/05/updated-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

