<?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: Coast to Coast Podcast (Follow-Up)</title>
	<atom:link href="http://www.metaphoriclabs.com/articles/coast-to-coast-podcast-follow-up/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.metaphoriclabs.com/articles/coast-to-coast-podcast-follow-up/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=coast-to-coast-podcast-follow-up</link>
	<description>Experiential Serendipity</description>
	<lastBuildDate>Thu, 11 Mar 2010 13:24:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: iTorrey</title>
		<link>http://www.metaphoriclabs.com/articles/coast-to-coast-podcast-follow-up/comment-page-1/#comment-724</link>
		<dc:creator>iTorrey</dc:creator>
		<pubDate>Sun, 24 Jul 2005 22:33:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.metaphoriclabs.com/2005/coast-to-coast-podcast-follow-up/#comment-724</guid>
		<description>Solution:

Create a folder action for the folder where you download Coast at. Or instead of creating one just download this one
http://scriptbuilders.net/files/autoimporttoitunesfolderaction1.0.html

I edited that one slightly so that it doesn&#039;t display a message telling me that it was successful on _every_single_mp3 import..... anyways.. after enabling that folder action on the download folder any mp3 that gets dropped into that folder (or downloaded) will get imported into iTunes automatically. Now from there all you need to do is create a Smart Playlist in iTunes that only shows entries for &quot;Coast to Coast&quot; and just like that every time their lame downloader downloads the latest files they are instantly in your iTunes playlist.


Svweeeeeeet :)

Here is my modified version of the one above.

-- set filetypes which you want iTunes to import
property myFiletypes : {&quot;.mp3&quot;, &quot;.aiff&quot;, &quot;.aac&quot;, &quot;.wav&quot;, &quot;.mov&quot;}
on adding folder items to this_folder after receiving added_items

	-- successReporting variable is used to report whether or not it was a successful import. 0 is off. 1 is on.
	set successReporting to 1
	-- get items
	set myFinderItems to added_items
	tell application &quot;System Events&quot;
		set allItems to every item of myFinderItems
	end tell

	-- loop
	repeat with i from 1 to the count of allItems
		try
			-- get an item
			set myFinderItem to (item i of allItems as alias)
			-- check if it is a folder
			tell application &quot;Finder&quot; to set myItemIsFolder to (kind of myFinderItem = &quot;Folder&quot;)
			-- if it isn&#039;t a folder...
			if myItemIsFolder is false then
				-- see if the file has the right extension
				tell application &quot;Finder&quot; to set myItemExtension to &quot;.&quot; &amp; (name extension of myFinderItem) as string
				if myFiletypes contains myItemExtension then
					set mySongName to myFinderItem as alias
					-- add track to iTunes
					tell application &quot;iTunes&quot;
						add mySongName
					end tell
				end if
			end if

			-- check if user requested a positive report. defaults as 1 - reports shown.
			if successReporting is 1 then
				--display dialog &quot;Your track(s) has been added to the iTunes Library.&quot;       ---do we really need this??
			end if

		on error
			-- if there was an error report regardless of successReporting
			display dialog &quot;Could not add file to iTunes library&quot;
		end try
	end repeat

end adding folder items to</description>
		<content:encoded><![CDATA[<p>Solution:</p>
<p>Create a folder action for the folder where you download Coast at. Or instead of creating one just download this one<br />
<a href="http://scriptbuilders.net/files/autoimporttoitunesfolderaction1.0.html" rel="nofollow">http://scriptbuilders.net/files/autoimporttoitunesfolderaction1.0.html</a></p>
<p>I edited that one slightly so that it doesn&#8217;t display a message telling me that it was successful on _every_single_mp3 import&#8230;.. anyways.. after enabling that folder action on the download folder any mp3 that gets dropped into that folder (or downloaded) will get imported into iTunes automatically. Now from there all you need to do is create a Smart Playlist in iTunes that only shows entries for &#8220;Coast to Coast&#8221; and just like that every time their lame downloader downloads the latest files they are instantly in your iTunes playlist.</p>
<p>Svweeeeeeet <img src='http://www.metaphoriclabs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Here is my modified version of the one above.</p>
<p>&#8211; set filetypes which you want iTunes to import<br />
property myFiletypes : {&#8220;.mp3&#8243;, &#8220;.aiff&#8221;, &#8220;.aac&#8221;, &#8220;.wav&#8221;, &#8220;.mov&#8221;}<br />
on adding folder items to this_folder after receiving added_items</p>
<p>	&#8211; successReporting variable is used to report whether or not it was a successful import. 0 is off. 1 is on.<br />
	set successReporting to 1<br />
	&#8211; get items<br />
	set myFinderItems to added_items<br />
	tell application &#8220;System Events&#8221;<br />
		set allItems to every item of myFinderItems<br />
	end tell</p>
<p>	&#8211; loop<br />
	repeat with i from 1 to the count of allItems<br />
		try<br />
			&#8211; get an item<br />
			set myFinderItem to (item i of allItems as alias)<br />
			&#8211; check if it is a folder<br />
			tell application &#8220;Finder&#8221; to set myItemIsFolder to (kind of myFinderItem = &#8220;Folder&#8221;)<br />
			&#8211; if it isn&#8217;t a folder&#8230;<br />
			if myItemIsFolder is false then<br />
				&#8211; see if the file has the right extension<br />
				tell application &#8220;Finder&#8221; to set myItemExtension to &#8220;.&#8221; &amp; (name extension of myFinderItem) as string<br />
				if myFiletypes contains myItemExtension then<br />
					set mySongName to myFinderItem as alias<br />
					&#8211; add track to iTunes<br />
					tell application &#8220;iTunes&#8221;<br />
						add mySongName<br />
					end tell<br />
				end if<br />
			end if</p>
<p>			&#8211; check if user requested a positive report. defaults as 1 &#8211; reports shown.<br />
			if successReporting is 1 then<br />
				&#8211;display dialog &#8220;Your track(s) has been added to the iTunes Library.&#8221;       &#8212;do we really need this??<br />
			end if</p>
<p>		on error<br />
			&#8211; if there was an error report regardless of successReporting<br />
			display dialog &#8220;Could not add file to iTunes library&#8221;<br />
		end try<br />
	end repeat</p>
<p>end adding folder items to</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chuck</title>
		<link>http://www.metaphoriclabs.com/articles/coast-to-coast-podcast-follow-up/comment-page-1/#comment-723</link>
		<dc:creator>Chuck</dc:creator>
		<pubDate>Sat, 04 Jun 2005 17:00:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.metaphoriclabs.com/2005/coast-to-coast-podcast-follow-up/#comment-723</guid>
		<description>I hear you...  It&#039;d definately be a step in the right direction to make it a single file (or offer us the option).

My current process is

1) Drag the files onto the iTunes dock icon
2) Go into iTunes and use a track splicing applescript to create a single file (at which point I have to type in a new name),
3) Delete the four &quot;hour&quot; files from iTunes
4) Delete the playlist I had to make to do the splicing.
5) Go to the Coast to Coast site to get the proper name of the episode.
6) Set the file metadata (I set the name appropriately, the Artist to &quot;Coast to Coast with &quot; (Art, George, etc.), and the Album to the Month, Day, Year and Day of week.  This way I can easily tell on my iPod which is which, and find an Art or George if I&#039;m more in the mood for one or the other.
7) Convert the file to AAC
8) Delete the leftover MP3
9) Run a script to make the AAC &quot;bookmarkable&quot;.
10) Add it to the proper playlist (I do a playlist for each month).
11) Delete the originally downloaded files.

All the &quot;Coast to Coast Media Center&quot; accomplished was skipping a first step of going to the site and downloading the file -- which is handy, because I often get behind, and if you fall more than 90 days behind, you have a problem (it was much worse when the cutoff was 30 days).

What I&#039;d really LOVE would be if the thing brought down a single file, with the metadata set appropriately - it doesn&#039;t have to be the way I do it currently, but the name of the episode, date, and host are important (to me anyway) and need to be in there.

If it did that, AND was an actual PodCast, then this process would be entirely automatic for me, as I could let iPodderX add it to iTunes, set the proper playlist, convert it to AAC and make it bookmarkable.</description>
		<content:encoded><![CDATA[<p>I hear you&#8230;  It&#8217;d definately be a step in the right direction to make it a single file (or offer us the option).</p>
<p>My current process is</p>
<p>1) Drag the files onto the iTunes dock icon<br />
2) Go into iTunes and use a track splicing applescript to create a single file (at which point I have to type in a new name),<br />
3) Delete the four &#8220;hour&#8221; files from iTunes<br />
4) Delete the playlist I had to make to do the splicing.<br />
5) Go to the Coast to Coast site to get the proper name of the episode.<br />
6) Set the file metadata (I set the name appropriately, the Artist to &#8220;Coast to Coast with &#8221; (Art, George, etc.), and the Album to the Month, Day, Year and Day of week.  This way I can easily tell on my iPod which is which, and find an Art or George if I&#8217;m more in the mood for one or the other.<br />
7) Convert the file to AAC <img src='http://www.metaphoriclabs.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> Delete the leftover MP3<br />
9) Run a script to make the AAC &#8220;bookmarkable&#8221;.<br />
10) Add it to the proper playlist (I do a playlist for each month).<br />
11) Delete the originally downloaded files.</p>
<p>All the &#8220;Coast to Coast Media Center&#8221; accomplished was skipping a first step of going to the site and downloading the file &#8212; which is handy, because I often get behind, and if you fall more than 90 days behind, you have a problem (it was much worse when the cutoff was 30 days).</p>
<p>What I&#8217;d really LOVE would be if the thing brought down a single file, with the metadata set appropriately &#8211; it doesn&#8217;t have to be the way I do it currently, but the name of the episode, date, and host are important (to me anyway) and need to be in there.</p>
<p>If it did that, AND was an actual PodCast, then this process would be entirely automatic for me, as I could let iPodderX add it to iTunes, set the proper playlist, convert it to AAC and make it bookmarkable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: keltoi</title>
		<link>http://www.metaphoriclabs.com/articles/coast-to-coast-podcast-follow-up/comment-page-1/#comment-722</link>
		<dc:creator>keltoi</dc:creator>
		<pubDate>Thu, 02 Jun 2005 19:05:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.metaphoriclabs.com/2005/coast-to-coast-podcast-follow-up/#comment-722</guid>
		<description>I&#039;m with you. Its a bit misleading to say they&#039;ve got podcasting now, but what they&#039;ve really got is a download tool that has zero interaction with iTunes. I had less patience for the 4 piece mp3 download so I cancelled my subscription, but signed up again when I saw podcasting. IMO its a bit misleading to say that this media center tool is podcasting, the same thing could be accomplished by offering me a 1 file, 4 hour .mp3 that I have to go to the site to download. It really matters not whether I have to go to the site or go dig in my music folder to add the &quot;podcast&quot; to iTunes, its way too many steps for a &quot;podcast&quot;. I suppose there&#039;s an AppleScript to be written or some other such geeky avenue for making the podcast available in iTunes with my other ones (some paid subscription based that behave just like a free podcast), but I&#039;m not really that much of a coder, nor should I have to be for a paid &quot;service&quot;.

Hopefully there&#039;s a solution soon. I&#039;ve been addicted to the show for years, but my years are growing and my bedtime has become earlier so listening at 1pm is far better than listening at 1am! :)</description>
		<content:encoded><![CDATA[<p>I&#8217;m with you. Its a bit misleading to say they&#8217;ve got podcasting now, but what they&#8217;ve really got is a download tool that has zero interaction with iTunes. I had less patience for the 4 piece mp3 download so I cancelled my subscription, but signed up again when I saw podcasting. IMO its a bit misleading to say that this media center tool is podcasting, the same thing could be accomplished by offering me a 1 file, 4 hour .mp3 that I have to go to the site to download. It really matters not whether I have to go to the site or go dig in my music folder to add the &#8220;podcast&#8221; to iTunes, its way too many steps for a &#8220;podcast&#8221;. I suppose there&#8217;s an AppleScript to be written or some other such geeky avenue for making the podcast available in iTunes with my other ones (some paid subscription based that behave just like a free podcast), but I&#8217;m not really that much of a coder, nor should I have to be for a paid &#8220;service&#8221;.</p>
<p>Hopefully there&#8217;s a solution soon. I&#8217;ve been addicted to the show for years, but my years are growing and my bedtime has become earlier so listening at 1pm is far better than listening at 1am! <img src='http://www.metaphoriclabs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
