<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Converting Avi files to Mp4 for Nokia 5800</title>
	<atom:link href="http://automate-everything.com/lang/en/2009/03/converting-avi-files-to-mp4-for-nokia-5800/feed/" rel="self" type="application/rss+xml" />
	<link>http://automate-everything.com/lang/en/2009/03/converting-avi-files-to-mp4-for-nokia-5800</link>
	<description>Ruby, Linux and other hints, tips and tricks.</description>
	<lastBuildDate>Tue, 03 Apr 2012 18:42:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Zackary Mcgary</title>
		<link>http://automate-everything.com/lang/en/2009/03/converting-avi-files-to-mp4-for-nokia-5800/comment-page-1/#comment-1419</link>
		<dc:creator>Zackary Mcgary</dc:creator>
		<pubDate>Wed, 01 Jun 2011 11:19:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.team-trick.net/?p=28#comment-1419</guid>
		<description>There&#039;s obviously a lot to understand about this. I believe you created some excellent points in Characteristics also.
Keep working , fantastic work!</description>
		<content:encoded><![CDATA[<p>There&#8217;s obviously a lot to understand about this. I believe you created some excellent points in Characteristics also.<br />
Keep working , fantastic work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jayo</title>
		<link>http://automate-everything.com/lang/en/2009/03/converting-avi-files-to-mp4-for-nokia-5800/comment-page-1/#comment-1212</link>
		<dc:creator>Jayo</dc:creator>
		<pubDate>Thu, 17 Mar 2011 00:08:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.team-trick.net/?p=28#comment-1212</guid>
		<description>Thanks for the script. It got me a lot closer to a working example. I guess this would have worked for me if I had a mencoder compiled with support for libfaac, but I don&#039;t, which is quite common. So, for those who run into that problem, here&#039;s a one-liner version that will work on the command line in Linux, using mp3lame for the audio encoder:

inf=&quot;/home/me/Videos/SomeMpgFile.mpg&quot; &amp;&amp; outf=&quot;SomeMp4File.mp4&quot; &amp;&amp; mencoder -of lavf -lavfopts format=mp4 -oac mp3lame -lameopts cbr -ovc lavc -lavcopts aglobal=1:vglobal=1:acodec=mp3lame:vcodec=mpeg4:abitrate=96:vbitrate=800:keyint=250:mbd=1:vqmax=10:lmax=10:vpass=1:turbo -ofps 25 -af lavcresample=44100 -vf harddup,scale=640:360 &quot;$inf&quot; -o &quot;$outf&quot; &amp;&amp; mencoder -msglevel all=5 -of lavf -lavfopts format=mp4 -oac mp3lame -lameopts cbr -ovc lavc -lavcopts aglobal=1:vglobal=1:acodec=mp3lame:vcodec=mpeg4:abitrate=96:vbitrate=800:keyint=250:mbd=1:vqmax=10:lmax=10:vpass=2 -ofps 25 -af lavcresample=44100 -vf harddup,scale=640:360 &quot;$inf&quot; -o &quot;$outf&quot;

Obviously the inf and outf variables specify the input and output filenames for the video. Note that my &#039;scale&#039; setting is for the Nokia 5230, adjust as appropriate. Also note, I removed the subtitles feature in this simple one-liner approach.

I assume this can work also on Windows, but I haven&#039;t tested.</description>
		<content:encoded><![CDATA[<p>Thanks for the script. It got me a lot closer to a working example. I guess this would have worked for me if I had a mencoder compiled with support for libfaac, but I don&#8217;t, which is quite common. So, for those who run into that problem, here&#8217;s a one-liner version that will work on the command line in Linux, using mp3lame for the audio encoder:</p>
<p>inf=&#8221;/home/me/Videos/SomeMpgFile.mpg&#8221; &amp;&amp; outf=&#8221;SomeMp4File.mp4&#8243; &amp;&amp; mencoder -of lavf -lavfopts format=mp4 -oac mp3lame -lameopts cbr -ovc lavc -lavcopts aglobal=1:vglobal=1:acodec=mp3lame:vcodec=mpeg4:abitrate=96:vbitrate=800:keyint=250:mbd=1:vqmax=10:lmax=10:vpass=1:turbo -ofps 25 -af lavcresample=44100 -vf harddup,scale=640:360 &#8220;$inf&#8221; -o &#8220;$outf&#8221; &amp;&amp; mencoder -msglevel all=5 -of lavf -lavfopts format=mp4 -oac mp3lame -lameopts cbr -ovc lavc -lavcopts aglobal=1:vglobal=1:acodec=mp3lame:vcodec=mpeg4:abitrate=96:vbitrate=800:keyint=250:mbd=1:vqmax=10:lmax=10:vpass=2 -ofps 25 -af lavcresample=44100 -vf harddup,scale=640:360 &#8220;$inf&#8221; -o &#8220;$outf&#8221;</p>
<p>Obviously the inf and outf variables specify the input and output filenames for the video. Note that my &#8216;scale&#8217; setting is for the Nokia 5230, adjust as appropriate. Also note, I removed the subtitles feature in this simple one-liner approach.</p>
<p>I assume this can work also on Windows, but I haven&#8217;t tested.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frankie Mamaclay</title>
		<link>http://automate-everything.com/lang/en/2009/03/converting-avi-files-to-mp4-for-nokia-5800/comment-page-1/#comment-1109</link>
		<dc:creator>Frankie Mamaclay</dc:creator>
		<pubDate>Wed, 16 Feb 2011 04:51:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.team-trick.net/?p=28#comment-1109</guid>
		<description>Excellent post however , I was wondering if you could write a litte more on this subject? I&#039;d be very thankful if you could elaborate a little bit more. Appreciate it!</description>
		<content:encoded><![CDATA[<p>Excellent post however , I was wondering if you could write a litte more on this subject? I&#8217;d be very thankful if you could elaborate a little bit more. Appreciate it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sergio Lima</title>
		<link>http://automate-everything.com/lang/en/2009/03/converting-avi-files-to-mp4-for-nokia-5800/comment-page-1/#comment-850</link>
		<dc:creator>Sergio Lima</dc:creator>
		<pubDate>Fri, 05 Nov 2010 19:57:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.team-trick.net/?p=28#comment-850</guid>
		<description>Hi.
i dont know anything about programing (even at Ruby, or C, C+, etc) but I understood u used the scrip posted above to do the proper convertion...
I´m trying to find a way to watch my movies with the subtitles in 5800, but i couldn´t find it yet.
Can u provide a explanation how to use that script you wrote?

Thanks anyway</description>
		<content:encoded><![CDATA[<p>Hi.<br />
i dont know anything about programing (even at Ruby, or C, C+, etc) but I understood u used the scrip posted above to do the proper convertion&#8230;<br />
I´m trying to find a way to watch my movies with the subtitles in 5800, but i couldn´t find it yet.<br />
Can u provide a explanation how to use that script you wrote?</p>
<p>Thanks anyway</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: atul</title>
		<link>http://automate-everything.com/lang/en/2009/03/converting-avi-files-to-mp4-for-nokia-5800/comment-page-1/#comment-638</link>
		<dc:creator>atul</dc:creator>
		<pubDate>Thu, 27 May 2010 09:13:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.team-trick.net/?p=28#comment-638</guid>
		<description>Can some please tell me what to do in details as i didnt understand a single word of teh above details…. i need to go like step1, then step2 n so on
even i didn&#039;t under stand a word it will be great help if u tell it step by step. where this script is to be written.</description>
		<content:encoded><![CDATA[<p>Can some please tell me what to do in details as i didnt understand a single word of teh above details…. i need to go like step1, then step2 n so on<br />
even i didn&#8217;t under stand a word it will be great help if u tell it step by step. where this script is to be written.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Munira</title>
		<link>http://automate-everything.com/lang/en/2009/03/converting-avi-files-to-mp4-for-nokia-5800/comment-page-1/#comment-580</link>
		<dc:creator>Munira</dc:creator>
		<pubDate>Tue, 06 Apr 2010 16:59:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.team-trick.net/?p=28#comment-580</guid>
		<description>Can some please tell me what to do in details as i didnt understand a single word of teh above details.... i need to go like step1, then step2 n so on... you cab email me on soni.691989@hotmail.com.. PLEASE HELP!!!!</description>
		<content:encoded><![CDATA[<p>Can some please tell me what to do in details as i didnt understand a single word of teh above details&#8230;. i need to go like step1, then step2 n so on&#8230; you cab email me on <a href="mailto:soni.691989@hotmail.com">soni.691989@hotmail.com</a>.. PLEASE HELP!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Susana</title>
		<link>http://automate-everything.com/lang/en/2009/03/converting-avi-files-to-mp4-for-nokia-5800/comment-page-1/#comment-556</link>
		<dc:creator>Susana</dc:creator>
		<pubDate>Wed, 10 Mar 2010 10:08:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.team-trick.net/?p=28#comment-556</guid>
		<description>Nice post. automate-everythingc.om is killer.</description>
		<content:encoded><![CDATA[<p>Nice post. automate-everythingc.om is killer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Smiley000</title>
		<link>http://automate-everything.com/lang/en/2009/03/converting-avi-files-to-mp4-for-nokia-5800/comment-page-1/#comment-535</link>
		<dc:creator>Smiley000</dc:creator>
		<pubDate>Thu, 18 Feb 2010 22:55:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.team-trick.net/?p=28#comment-535</guid>
		<description>Can you please help me with your script. I have never used Ruby before. I installed it, i copied you script into Ruby`s window and now? 
What to do?
To save it as what type of file?
Or how to do it?
Please help me !</description>
		<content:encoded><![CDATA[<p>Can you please help me with your script. I have never used Ruby before. I installed it, i copied you script into Ruby`s window and now?<br />
What to do?<br />
To save it as what type of file?<br />
Or how to do it?<br />
Please help me !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vikas</title>
		<link>http://automate-everything.com/lang/en/2009/03/converting-avi-files-to-mp4-for-nokia-5800/comment-page-1/#comment-525</link>
		<dc:creator>Vikas</dc:creator>
		<pubDate>Sat, 23 Jan 2010 06:34:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.team-trick.net/?p=28#comment-525</guid>
		<description>Simply put, IT&#039;S AWESOME!!
I&#039;ve been trying to do this for my Nokia 5230 since 3 days using mencoder. `midentify`ing doesn&#039;t show any difference between the video I generate and the one that Format Factory gemerates but mine doesn&#039;t play on the mobile. Now, thanks to you, it works flawlessly...</description>
		<content:encoded><![CDATA[<p>Simply put, IT&#8217;S AWESOME!!<br />
I&#8217;ve been trying to do this for my Nokia 5230 since 3 days using mencoder. `midentify`ing doesn&#8217;t show any difference between the video I generate and the one that Format Factory gemerates but mine doesn&#8217;t play on the mobile. Now, thanks to you, it works flawlessly&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cecil</title>
		<link>http://automate-everything.com/lang/en/2009/03/converting-avi-files-to-mp4-for-nokia-5800/comment-page-1/#comment-202</link>
		<dc:creator>Cecil</dc:creator>
		<pubDate>Mon, 16 Nov 2009 02:38:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.team-trick.net/?p=28#comment-202</guid>
		<description>Great script.
I don&#039;t do Ruby before. So I&#039;ve to install Ruby for Windows.

Your script works great:)

Many thanks.</description>
		<content:encoded><![CDATA[<p>Great script.<br />
I don&#8217;t do Ruby before. So I&#8217;ve to install Ruby for Windows.</p>
<p>Your script works great:)</p>
<p>Many thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

