<?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>JB in Frisco &#187; podcasts</title>
	<atom:link href="http://jbinfrisco.com/tag/podcasts/feed/" rel="self" type="application/rss+xml" />
	<link>http://jbinfrisco.com</link>
	<description>where my attention is ...</description>
	<lastBuildDate>Wed, 14 Mar 2012 06:49:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Time-saving Trick for Faster Podcast Listening</title>
		<link>http://jbinfrisco.com/2008/07/time-saving-trick-for-faster-podcast-listening/</link>
		<comments>http://jbinfrisco.com/2008/07/time-saving-trick-for-faster-podcast-listening/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 00:19:43 +0000</pubDate>
		<dc:creator>jbinfrisco</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[applescripts]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[lifehacks]]></category>
		<category><![CDATA[podcasts]]></category>

		<guid isPermaLink="false">http://jbinfrisco.com/?p=50</guid>
		<description><![CDATA[Whether you want to learn spanish, follow NPR, or hear the positions of Barack Obama, podcasts are a great way to learn about a subject quickly. As an information junkie, I employ a little ninja trick when I fall behind on listening to my podcast subscriptions. This post will cover how to create an Applescript [...]]]></description>
			<content:encoded><![CDATA[<p>Whether you want to <a href="http://www.radiolinguamedia.com/cbs/www/guide/guide/subscribe.html" target="_blank">learn spanish</a>, follow <a href="http://www.npr.org/rss/podcast/podcast_directory.php" target="_blank">NPR</a>, or hear the positions of <a href="http://www.npr.org/rss/podcast/podcast_directory.php" target="_blank">Barack Obama</a>, podcasts are a great way to learn about a subject quickly. As an information junkie, I employ a little ninja trick when I fall behind on listening to my podcast subscriptions. This post will cover how to create an Applescript so that you can playback podcasts faster.</p>
<p>The first time I saw the <a href="http://en.wikipedia.org/wiki/TiVo" title="Tivo" target="_blank">Tivo</a>, I was transfixed. Tivo was a game changer. Bloated one hour episodes were magically reduced to  45 minutes of commercial-free programming. Tivo changed the way people watched television.  Television addicts rejoiced. It also became a valuable tool for Tivo&#8217;s time-deprived customers to skip the fluff.  Advertisers were no longer guaranteed eyeballs and as a consequence, traditional ad revenue models began to deteriorate.</p>
<p>The Tivo proved that technology could bring control to our content and allow for its use in more flexible and efficient ways. Alas, this Applescript accomplishes the same thing for podcasts by increasing the speed and reducing the time it takes to digest audio content.</p>
<p><strong>Will I still be able to understand the recording?</strong></p>
<p>Conventional thinking would suggest that speeding up the playback would make the recording sound <a href="http://www.youtube.com/watch?v=nx3mBTYRRKo" title="Chipmunks" target="_blank">like this</a>.  Surprisingly, that isn&#8217;t the case and the quality of the audio is understandable. If you can adapt to the faster pace, this hack is guaranteed to  save time.</p>
<p><span style="font-weight: bold">What are the limitations?</span></p>
<p>While it may be obvious, Applescripts are only applicable to the Mac OS. Second, if you have iTunes streaming to your stereo, this Applescript utilizes Quicktime and playback will occur over the computer’s default speakers. Finally, this isn’t a solution for the iPod or iPhone. There are extension tweaks for those devices that will allow you to increase playback speed of AAC files, but that’s for another day.</p>
<p><span style="font-weight: bold">Ok, what’s the hack? </span></p>
<ul>
<li>Goto Finder and open the application “Script Editor” and select New from the File menu.</li>
</ul>
<ul>
<li>Paste the following code into the Script Editor. {Playback speed is controlled in second line from bottom.}</li>
</ul>
<p style="margin-left: 40px"><span style="color: #000080; font-weight: bold">tell application &#8220;iTunes&#8221;</span><br style="color: #000080; font-weight: bold" /><span style="color: #000080; font-weight: bold">    pause</span><br style="color: #000080; font-weight: bold" /><span style="color: #000080; font-weight: bold">    set my_track to location of current track</span><br style="color: #000080; font-weight: bold" /><span style="color: #000080; font-weight: bold">    set my_seconds to player position</span><br style="color: #000080; font-weight: bold" /><span style="color: #000080; font-weight: bold">end tell</span><br style="color: #000080; font-weight: bold" /><br style="color: #000080; font-weight: bold" /><span style="color: #000080; font-weight: bold">tell application &#8220;QuickTime Player&#8221;</span><br style="color: #000080; font-weight: bold" /><span style="color: #000080; font-weight: bold">    open my_track</span><br style="color: #000080; font-weight: bold" /><span style="color: #000080; font-weight: bold">    set my_movie to first document</span><br style="color: #000080; font-weight: bold" /><span style="color: #000080; font-weight: bold">    set ts to time scale of my_movie</span><br style="color: #000080; font-weight: bold" /><span style="color: #000080; font-weight: bold">    set current time of my_movie to my_seconds * ts</span><br style="color: #000080; font-weight: bold" /><span style="color: #000080; font-weight: bold">    set rate of my_movie to 1.4 &#8212; starts playing </span><br style="color: #000080; font-weight: bold" /><span style="color: #000080; font-weight: bold">end tell</span></p>
<ul>
<li>Create a folder called iTunes in your ‘User/Library/Scripts’ folder</li>
</ul>
<ul>
<li>Save the script to the newly created folder</li>
</ul>
<ul>
<li>Launch iTunes, select a podcast, launch the script from your menu bar</li>
</ul>
<ul>
<li>Listen</li>
</ul>
<p>One more thing to remember. You need to go into the Applescript Utility and make sure “Show Scripts Menu in Menu Bar” is checked. Otherwise, you won’t see the icon in your menu bar. So there you have it. A tech trick from a relative newbie in the world of Applescripts. Enjoy.</p>
<p>P.S. If you have found or written any other good scripts for iTunes or have a better (simpler) way to speed up podcasts, leave a comment!</p>
<p><iframe src="http://www.google.com/notebook/static_files/blank.html" style="position: absolute; display: block; opacity: 0.7; z-index: 500; width: 17px; height: 18px; top: 61px; right: 554px" id="gnotes-notemagic" frameborder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://jbinfrisco.com/2008/07/time-saving-trick-for-faster-podcast-listening/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

