<?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: IMDB Film Summary as a MPEG2 video</title>
	<atom:link href="http://blog.flexion.org/index.php/2009/04/22/imdb-film-summary-mpeg2-video/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexion.org/index.php/2009/04/22/imdb-film-summary-mpeg2-video/</link>
	<description>Bad grammar and typos for total strangers</description>
	<lastBuildDate>Wed, 03 Mar 2010 07:09:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jukka</title>
		<link>http://blog.flexion.org/index.php/2009/04/22/imdb-film-summary-mpeg2-video/comment-page-1/#comment-677</link>
		<dc:creator>Jukka</dc:creator>
		<pubDate>Thu, 14 Jan 2010 14:09:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexion.org/?p=230#comment-677</guid>
		<description>@Martin: Just to let you know I compiled ffmpeg from source with x264 enabled. When I used this script with m4v option, the script failed due to ffmpeg presets (I don&#039;t remember the exact error message) and no summary file was created.

Then I changed x264 to -libxvid after which the summary movie file can be created by using the script as planned. For some reason I always get the error message that movie file is not PS3 compatible. Hopefully I have some time next week to have a more closer look on this. I will let you know if I find a way to fix this (in case someone else ran into same kind of problems).</description>
		<content:encoded><![CDATA[<p>@Martin: Just to let you know I compiled ffmpeg from source with x264 enabled. When I used this script with m4v option, the script failed due to ffmpeg presets (I don&#8217;t remember the exact error message) and no summary file was created.</p>
<p>Then I changed x264 to -libxvid after which the summary movie file can be created by using the script as planned. For some reason I always get the error message that movie file is not PS3 compatible. Hopefully I have some time next week to have a more closer look on this. I will let you know if I find a way to fix this (in case someone else ran into same kind of problems).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://blog.flexion.org/index.php/2009/04/22/imdb-film-summary-mpeg2-video/comment-page-1/#comment-616</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Thu, 03 Dec 2009 11:54:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexion.org/?p=230#comment-616</guid>
		<description>@Jukka, I have seen this before. The encode is failing because h.264 video encoding libraries are not available to ffmpeg. On 9.04 this can be fixed by install the &#039;libav*-unstripped&#039; libraries on 9.10 I think they are called libav*-extras&#039;. Try the following...

 sudo aptitude install ffmpeg libavcodec-extra-52

If that doesn&#039;t work you can try two things. Pass the MPEG-2 flag to the script to create MPEG-2 video rather than MPEG-4, use &#039;-o m2v&#039;. See the help for more details.

Or a more involve work around is to modify the script to use XviD rather than h.264. Find the ffmpeg line ~813. Find &#039;-f mp4&#039; and change it to &#039;-f libxvid&#039;.</description>
		<content:encoded><![CDATA[<p>@Jukka, I have seen this before. The encode is failing because h.264 video encoding libraries are not available to ffmpeg. On 9.04 this can be fixed by install the &#8216;libav*-unstripped&#8217; libraries on 9.10 I think they are called libav*-extras&#8217;. Try the following&#8230;</p>
<p> sudo aptitude install ffmpeg libavcodec-extra-52</p>
<p>If that doesn&#8217;t work you can try two things. Pass the MPEG-2 flag to the script to create MPEG-2 video rather than MPEG-4, use &#8216;-o m2v&#8217;. See the help for more details.</p>
<p>Or a more involve work around is to modify the script to use XviD rather than h.264. Find the ffmpeg line ~813. Find &#8216;-f mp4&#8242; and change it to &#8216;-f libxvid&#8217;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jukka</title>
		<link>http://blog.flexion.org/index.php/2009/04/22/imdb-film-summary-mpeg2-video/comment-page-1/#comment-614</link>
		<dc:creator>Jukka</dc:creator>
		<pubDate>Tue, 24 Nov 2009 13:15:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexion.org/?p=230#comment-614</guid>
		<description>Great script! Unfortunately it seems that I am the only one  who is not able create the summary file (mp4 or m2v) on my (k)ubuntu 9.10 machine based on your script. Even if I am using debugging mode I don&#039;t get any errors. I believe it is related to ffmpeg part of the script so I need to study it a bit more. Do you have any hint where to look?</description>
		<content:encoded><![CDATA[<p>Great script! Unfortunately it seems that I am the only one  who is not able create the summary file (mp4 or m2v) on my (k)ubuntu 9.10 machine based on your script. Even if I am using debugging mode I don&#8217;t get any errors. I believe it is related to ffmpeg part of the script so I need to study it a bit more. Do you have any hint where to look?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://blog.flexion.org/index.php/2009/04/22/imdb-film-summary-mpeg2-video/comment-page-1/#comment-450</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Sun, 20 Sep 2009 08:50:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexion.org/?p=230#comment-450</guid>
		<description>I&#039;ve finally got round to working with Eric and incorporating all his contributions and improvements. v2.0 of IMDB-to-MPEG is now available, find out more at the URL below.

http://blog.flexion.org/index.php/2009/09/20/imdb-film-summary-as-a-mpeg2-video-part-2/</description>
		<content:encoded><![CDATA[<p>I&#8217;ve finally got round to working with Eric and incorporating all his contributions and improvements. v2.0 of IMDB-to-MPEG is now available, find out more at the URL below.</p>
<p><a href="http://blog.flexion.org/index.php/2009/09/20/imdb-film-summary-as-a-mpeg2-video-part-2/" rel="nofollow">http://blog.flexion.org/index.php/2009/09/20/imdb-film-summary-as-a-mpeg2-video-part-2/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://blog.flexion.org/index.php/2009/04/22/imdb-film-summary-mpeg2-video/comment-page-1/#comment-401</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Sat, 27 Jun 2009 09:14:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexion.org/?p=230#comment-401</guid>
		<description>@Eric: Thanks very much for the improvements you have made. I&#039;ll review your code and quite possibly release a revised version in the next week or so :-)</description>
		<content:encoded><![CDATA[<p>@Eric: Thanks very much for the improvements you have made. I&#8217;ll review your code and quite possibly release a revised version in the next week or so <img src='http://blog.flexion.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Categorizing Your Movie Collection with IMDB &#124; yPass.net Blog</title>
		<link>http://blog.flexion.org/index.php/2009/04/22/imdb-film-summary-mpeg2-video/comment-page-1/#comment-397</link>
		<dc:creator>Categorizing Your Movie Collection with IMDB &#124; yPass.net Blog</dc:creator>
		<pubDate>Wed, 17 Jun 2009 22:32:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexion.org/?p=230#comment-397</guid>
		<description>[...] hand, I ran into another unrelated problem. While I was searching for the solution, I came across IMDB-to-MPEG. I had to hack around a bit in the PHP code to get it to work the way I wanted, but man did it save [...]</description>
		<content:encoded><![CDATA[<p>[...] hand, I ran into another unrelated problem. While I was searching for the solution, I came across IMDB-to-MPEG. I had to hack around a bit in the PHP code to get it to work the way I wanted, but man did it save [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://blog.flexion.org/index.php/2009/04/22/imdb-film-summary-mpeg2-video/comment-page-1/#comment-396</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Wed, 17 Jun 2009 22:07:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexion.org/?p=230#comment-396</guid>
		<description>You can delete this comment... i couldn&#039;t find an email address for you.

I ended up rewriting the whole thing today:

http://www.ypass.net/downloads/IMDB-to-MPEG/IMDB-to-MPEG-v2.0.tar.gz

You&#039;ll need to add back in your mpeg2 creation stuff.  I have no clue what you&#039;re doing there :).

Look for encodeVideoM4V() and just create a encodeVideoMPEG2() or whatever, then modify the switch statement below it.</description>
		<content:encoded><![CDATA[<p>You can delete this comment&#8230; i couldn&#8217;t find an email address for you.</p>
<p>I ended up rewriting the whole thing today:</p>
<p><a href="http://www.ypass.net/downloads/IMDB-to-MPEG/IMDB-to-MPEG-v2.0.tar.gz" rel="nofollow">http://www.ypass.net/downloads/IMDB-to-MPEG/IMDB-to-MPEG-v2.0.tar.gz</a></p>
<p>You&#8217;ll need to add back in your mpeg2 creation stuff.  I have no clue what you&#8217;re doing there <img src='http://blog.flexion.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>Look for encodeVideoM4V() and just create a encodeVideoMPEG2() or whatever, then modify the switch statement below it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://blog.flexion.org/index.php/2009/04/22/imdb-film-summary-mpeg2-video/comment-page-1/#comment-395</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Wed, 17 Jun 2009 15:50:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexion.org/?p=230#comment-395</guid>
		<description>This is very nice.  I&#039;ve made a few changes, such as encoding the About vid into h264 directly via ffmpeg (so the ps3 can play it natively) and confirmation prompt so i could semi-automate having it go through my whole library with a bash while loop... because &quot;Bookies&quot; != &quot;Cookie&#039;s Fortune&quot; silly IMDB... :)

I also dropped the text size and set an offset position because it was HUUUUGE on my 46&quot; tv.  Seriously, the text jumped off the screen, beat me up, and stole my wallet!

Oh... and there&#039;s a bug in texttoimage as well.  The parameters are wrong on the call to imagettftext()

Anyway, I&#039;ll clean it up a bit more and send it back to ya.  And to think i was getting ready to do this symlink tree manually..</description>
		<content:encoded><![CDATA[<p>This is very nice.  I&#8217;ve made a few changes, such as encoding the About vid into h264 directly via ffmpeg (so the ps3 can play it natively) and confirmation prompt so i could semi-automate having it go through my whole library with a bash while loop&#8230; because &#8220;Bookies&#8221; != &#8220;Cookie&#8217;s Fortune&#8221; silly IMDB&#8230; <img src='http://blog.flexion.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I also dropped the text size and set an offset position because it was HUUUUGE on my 46&#8243; tv.  Seriously, the text jumped off the screen, beat me up, and stole my wallet!</p>
<p>Oh&#8230; and there&#8217;s a bug in texttoimage as well.  The parameters are wrong on the call to imagettftext()</p>
<p>Anyway, I&#8217;ll clean it up a bit more and send it back to ya.  And to think i was getting ready to do this symlink tree manually..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://blog.flexion.org/index.php/2009/04/22/imdb-film-summary-mpeg2-video/comment-page-1/#comment-358</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Fri, 24 Apr 2009 14:22:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexion.org/?p=230#comment-358</guid>
		<description>Thanks Chris, I&#039;m expecting that you will send me some improvements pretty soon ;-)</description>
		<content:encoded><![CDATA[<p>Thanks Chris, I&#8217;m expecting that you will send me some improvements pretty soon <img src='http://blog.flexion.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://blog.flexion.org/index.php/2009/04/22/imdb-film-summary-mpeg2-video/comment-page-1/#comment-356</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Fri, 24 Apr 2009 11:45:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexion.org/?p=230#comment-356</guid>
		<description>That is a pretty cool idea :)</description>
		<content:encoded><![CDATA[<p>That is a pretty cool idea <img src='http://blog.flexion.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
