<?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>Lyle Backenroth &#187; Android</title>
	<atom:link href="http://www.lylebackenroth.com/blog/tag/android/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lylebackenroth.com/blog</link>
	<description></description>
	<lastBuildDate>Fri, 23 Jul 2010 01:07:35 +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>How to transcode any video format to h264 (android-playable and/or G1) format.</title>
		<link>http://www.lylebackenroth.com/blog/2009/05/30/how-to-transcode-any-video-format-to-h264-android-playable-andor-g1-format/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-transcode-any-video-format-to-h264-android-playable-andor-g1-format</link>
		<comments>http://www.lylebackenroth.com/blog/2009/05/30/how-to-transcode-any-video-format-to-h264-android-playable-andor-g1-format/#comments</comments>
		<pubDate>Sat, 30 May 2009 22:41:36 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[h264]]></category>
		<category><![CDATA[mencoder]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=384</guid>
		<description><![CDATA[The G1 has a chip in it that handles h264 encoded video (the same video codec used for YouTube videos), though format and scaling when transcoding video from other formats was a problem for me. With a lot of research and tweaking, the commands below seem to work very well for transcoding any video source [...]]]></description>
			<content:encoded><![CDATA[<p>The G1 has a chip in it that handles h264 encoded video (the same video codec used for YouTube videos), though format and scaling when transcoding video from other formats was a problem for me. With a lot of research and tweaking, the commands below seem to work very well for transcoding any video source (mpeg, avi, vob, etc) to an h264 video that the G1 can play natively. Note that the native resolution of the G1 screen is 480&#215;320. Also one should avoid transcoding bitrates over 700kb/s.</p>
<p>For videos recorded off TV this command works well and keeps the video scaled properly:</p>
<pre>mencoder input_file -o output_file.mp4 -of lavf -lavfopts format=mp4 -ss 1 -vf pp=ci,scale=432:324,crop=432:320,harddup -ovc x264 -x264encopts crf=30.0:nocabac:level_idc=30:global_header:threads=2 -ofps 30000/1001 -oac faac -faacopts mpeg=4:object=2:br=128:raw -channels 2 -srate 44100 -af volnorm</pre>
<p>This isn&#8217;t an elaborate HowTo, otherwise I might break down each command switch. Check the man pages on mencoder for details on each of the switches. This does work, however.</p>
<p>For videos ripped from DVDs you own, (generally 16:9 ratio), this command works very well (really only the scale of the video has changed):</p>
<pre>mencoder input_file -o output_file.mp4 -of lavf -lavfopts format=mp4 -ss 1 -vf pp=ci,scale=480:270,expand=480:272,harddup -ovc x264 -x264encopts crf=30.0:nocabac:level_idc=30:global_header:threads=2 -ofps 30000/1001 -oac faac -faacopts mpeg=4:object=2:br=128:raw -channels 2 -srate 44100 -af volnorm</pre>
<p>This will keep the letterbox scale without stretching the video. You can play with the <strong>scale=</strong> ratios but the numbers in the above commands work pretty well. A 90 minute video ends up transcoded to about 210-220megs, which fit pretty well on today&#8217;s micro SD&#8217;s (my G1 has an 8gig micro SD). Though I wouldn&#8217;t want to watch too many movies on such a small screen (nevermind the battery life issues).</p>
<p>In the case where you may have ripped the entire DVD contents to a hard disk and want to transcode from a hard disk rip to h264, replace the <strong>input_file</strong> in the above command with the following:</p>
<pre>-dvd-device /home/john/rips/GROUNDHOG_DAY/VIDEO_TS dvd://x</pre>
<p>Where you replace your path to the rip instead of <strong>/home/john/&#8230;</strong> and where <strong>dvd://x</strong> is the DVD title (the primary movie is usually 1, so <strong>dvd://1</strong>). This will transcode the entire move of a ripped DVD to h264. You can also do this directly off a dvd simply by inserting the dvd and in place of <strong>input_file</strong> in the above command, simply type: <strong>dvd://1</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2009/05/30/how-to-transcode-any-video-format-to-h264-android-playable-andor-g1-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android netbooks on their way, likely by 2010.</title>
		<link>http://www.lylebackenroth.com/blog/2009/01/02/android-netbooks-on-their-way-likely-by-2010/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=android-netbooks-on-their-way-likely-by-2010</link>
		<comments>http://www.lylebackenroth.com/blog/2009/01/02/android-netbooks-on-their-way-likely-by-2010/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 08:09:51 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=250</guid>
		<description><![CDATA[Amazing. The ramifications could be huge:
]]></description>
			<content:encoded><![CDATA[<p>Amazing. <a href="http://tinyurl.com/7m99u3" target="_blank">The ramifications could be huge:</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2009/01/02/android-netbooks-on-their-way-likely-by-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AndroidIRC for the Android OS (G1).</title>
		<link>http://www.lylebackenroth.com/blog/2009/01/02/androidirc-for-the-android-os-g1/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=androidirc-for-the-android-os-g1</link>
		<comments>http://www.lylebackenroth.com/blog/2009/01/02/androidirc-for-the-android-os-g1/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 04:23:13 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[G1]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=247</guid>
		<description><![CDATA[For Android (G1) users, a good IRC client, though still in beta and not yet on the market, so you&#8217;ll have to download the .apk file directly: be sure to go to your settings page on your G1, then to Applications, then check &#8220;unknown sources&#8221;, so you can download .apk files directly without having to [...]]]></description>
			<content:encoded><![CDATA[<p>For Android (G1) users, a good IRC client, though still in beta and not yet on the market, so you&#8217;ll have to download the .apk file directly: be sure to go to your settings page on your G1, then to Applications, then check &#8220;unknown sources&#8221;, so you can download .apk files directly without having to go through the market.</p>
<p>This app supports multiple channel (and you can navigate between them simply by swiping your finger left/right) and supports multiple IRC servers.</p>
<p><a href="http://code.google.com/p/androidirc/" target="_blank"><span class="entry-content">Project page here:</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2009/01/02/androidirc-for-the-android-os-g1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert your videos to .3gp format for viewing on cell phones and smartphones</title>
		<link>http://www.lylebackenroth.com/blog/2008/12/22/convert-your-videos-to-3gp-format-for-viewing-on-cell-phones-and-smartphones/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=convert-your-videos-to-3gp-format-for-viewing-on-cell-phones-and-smartphones</link>
		<comments>http://www.lylebackenroth.com/blog/2008/12/22/convert-your-videos-to-3gp-format-for-viewing-on-cell-phones-and-smartphones/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 12:12:35 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[G1]]></category>
		<category><![CDATA[Transcoding]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=243</guid>
		<description><![CDATA[After much pain and research with ffmpeg and mencoder, I stumbled upon MMC &#8211; Mobile Media Converter. It seems to be a front end to FFMPEG, but works seamlessly. It has quality presets, as well as customizable transcoding quality settings, for those who don&#8217;t want to lose their framerates.
If you&#8217;re looking to convert your videos [...]]]></description>
			<content:encoded><![CDATA[<p>After much pain and research with ffmpeg and mencoder, I stumbled upon MMC &#8211; Mobile Media Converter. It seems to be a front end to FFMPEG, but works seamlessly. It has quality presets, as well as customizable transcoding quality settings, for those who don&#8217;t want to lose their framerates.</p>
<p>If you&#8217;re looking to convert your videos from .avi or .mpeg format to the highly efficient .3gp format (natively supported by the Google Android OS, running on phones such as T-Mobile&#8217;s G1), then look no further than this application. The application runs on Windows &amp; Linux!</p>
<p><a href="http://www.miksoft.net/mobileMediaConverter.htm" target="_blank">Click here for their site</a>, the links to the application are at the bottom of the page.</p>
<p><a href="http://www.miksoft.net/products/mmc_1.4.0_i386.deb" target="_blank">Click here to conveniently download the Ubuntu .deb file for the application</a> (4.4 megs).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2008/12/22/convert-your-videos-to-3gp-format-for-viewing-on-cell-phones-and-smartphones/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)

Served from: lylebackenroth.com @ 2010-09-08 01:00:52 -->