<?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: Endless Source of live streams for TiVo</title>
	<atom:link href="http://www.kahunaburger.com/2003/04/14/endless-source-of-live-streams-for-tivo/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kahunaburger.com/2003/04/14/endless-source-of-live-streams-for-tivo/</link>
	<description>home of pia, max, frisco and tobias</description>
	<lastBuildDate>Mon, 08 Mar 2010 09:27:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: gordho</title>
		<link>http://www.kahunaburger.com/2003/04/14/endless-source-of-live-streams-for-tivo/comment-page-1/#comment-67</link>
		<dc:creator>gordho</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kahunaburger.com/2003/04/14/endless-source-of-live-streams-for-tivo/#comment-67</guid>
		<description>found a link on the tivo community forums for this script and it saves me sooooo much time. i really have no programing experience but all I had to do was install activestate perl on my xp box and run the script. thanks!!!</description>
		<content:encoded><![CDATA[<p>found a link on the tivo community forums for this script and it saves me sooooo much time. i really have no programing experience but all I had to do was install activestate perl on my xp box and run the script. thanks!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sm0kes</title>
		<link>http://www.kahunaburger.com/2003/04/14/endless-source-of-live-streams-for-tivo/comment-page-1/#comment-68</link>
		<dc:creator>Sm0kes</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kahunaburger.com/2003/04/14/endless-source-of-live-streams-for-tivo/#comment-68</guid>
		<description>Oh... this rocks.

I got it running no problem.  I went ahead and scripted up a batch script that will autopopulate my stations every day.

Thank you so much!  

SM0KES</description>
		<content:encoded><![CDATA[<p>Oh&#8230; this rocks.</p>
<p>I got it running no problem.  I went ahead and scripted up a batch script that will autopopulate my stations every day.</p>
<p>Thank you so much!  </p>
<p>SM0KES</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mandy</title>
		<link>http://www.kahunaburger.com/2003/04/14/endless-source-of-live-streams-for-tivo/comment-page-1/#comment-69</link>
		<dc:creator>mandy</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kahunaburger.com/2003/04/14/endless-source-of-live-streams-for-tivo/#comment-69</guid>
		<description>Yes.

This script is really cool, thanks allot
Is there a possiblity to get all available channels first and create a playlist for each ?</description>
		<content:encoded><![CDATA[<p>Yes.</p>
<p>This script is really cool, thanks allot<br />
Is there a possiblity to get all available channels first and create a playlist for each ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Circeus</title>
		<link>http://www.kahunaburger.com/2003/04/14/endless-source-of-live-streams-for-tivo/comment-page-1/#comment-70</link>
		<dc:creator>Circeus</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kahunaburger.com/2003/04/14/endless-source-of-live-streams-for-tivo/#comment-70</guid>
		<description>Hey.  I just wanted to let you know how cool this is. I made a slight mod to it that does two things:

1) Gives me a little feedback about what its adding.

2) Pops off those &quot;(#1 - 500)&quot; strings at the front of the titles for the stations.

Original looks like this:

foreach my $entry (@playlists) {
 my($url,$title)=%$entry;
 print OUT qq{#EXTINF:,$title\n$url\n};
}

My mods make that look like this:

foreach my $entry (@playlists) {
 print &quot;\n&quot;;
 my($url,$title)=%$entry;
 my $pos = index($title, &#039;)&#039;) + 2;
 my $realtitle = substr($title,$pos);
 print &quot;$realtitle\n$url\n&quot;;
 print OUT qq{#EXTINF:,$realtitle\n$url\n};
 print &quot;\n&quot;;
}</description>
		<content:encoded><![CDATA[<p>Hey.  I just wanted to let you know how cool this is. I made a slight mod to it that does two things:</p>
<p>1) Gives me a little feedback about what its adding.</p>
<p>2) Pops off those &#8220;(#1 &#8211; 500)&#8221; strings at the front of the titles for the stations.</p>
<p>Original looks like this:</p>
<p>foreach my $entry (@playlists) {<br />
 my($url,$title)=%$entry;<br />
 print OUT qq{#EXTINF:,$title\n$url\n};<br />
}</p>
<p>My mods make that look like this:</p>
<p>foreach my $entry (@playlists) {<br />
 print &#8220;\n&#8221;;<br />
 my($url,$title)=%$entry;<br />
 my $pos = index($title, &#8216;)&#8217;) + 2;<br />
 my $realtitle = substr($title,$pos);<br />
 print &#8220;$realtitle\n$url\n&#8221;;<br />
 print OUT qq{#EXTINF:,$realtitle\n$url\n};<br />
 print &#8220;\n&#8221;;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sean</title>
		<link>http://www.kahunaburger.com/2003/04/14/endless-source-of-live-streams-for-tivo/comment-page-1/#comment-71</link>
		<dc:creator>sean</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kahunaburger.com/2003/04/14/endless-source-of-live-streams-for-tivo/#comment-71</guid>
		<description>exellent..worked like a charm and i added that dudes mod as well.
just annoying that some sites playing techno seem to make it to all the lists!!

grrrrrrrrr</description>
		<content:encoded><![CDATA[<p>exellent..worked like a charm and i added that dudes mod as well.<br />
just annoying that some sites playing techno seem to make it to all the lists!!</p>
<p>grrrrrrrrr</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dns</title>
		<link>http://www.kahunaburger.com/2003/04/14/endless-source-of-live-streams-for-tivo/comment-page-1/#comment-72</link>
		<dc:creator>dns</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kahunaburger.com/2003/04/14/endless-source-of-live-streams-for-tivo/#comment-72</guid>
		<description>Wow. This is the blog I was looking for...</description>
		<content:encoded><![CDATA[<p>Wow. This is the blog I was looking for&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: duker</title>
		<link>http://www.kahunaburger.com/2003/04/14/endless-source-of-live-streams-for-tivo/comment-page-1/#comment-73</link>
		<dc:creator>duker</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kahunaburger.com/2003/04/14/endless-source-of-live-streams-for-tivo/#comment-73</guid>
		<description>I&#039;m not much of a programmer.  When and where do you type:  perl m3ugen.pl Punk 15 c:\tivo\mp3\Punk.m3u .    How do I create the m3ugen.pl file.  HELP!</description>
		<content:encoded><![CDATA[<p>I&#8217;m not much of a programmer.  When and where do you type:  perl m3ugen.pl Punk 15 c:\tivo\mp3\Punk.m3u .    How do I create the m3ugen.pl file.  HELP!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.kahunaburger.com/2003/04/14/endless-source-of-live-streams-for-tivo/comment-page-1/#comment-74</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kahunaburger.com/2003/04/14/endless-source-of-live-streams-for-tivo/#comment-74</guid>
		<description>Works great, but when the info screen comes up on the Tivo for the music info (ie. name,type,length) my computer errors a TivoServer abnormal error and shuts down the service.  I have the series 2 with all updates
</description>
		<content:encoded><![CDATA[<p>Works great, but when the info screen comes up on the Tivo for the music info (ie. name,type,length) my computer errors a TivoServer abnormal error and shuts down the service.  I have the series 2 with all updates</p>
]]></content:encoded>
	</item>
</channel>
</rss>
