<?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>gHacks technology news &#187; itunes</title>
	<atom:link href="http://www.ghacks.net/tag/itunes/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Mon, 09 Nov 2009 19:30:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Set up a Linux media server</title>
		<link>http://www.ghacks.net/2009/10/29/set-up-a-linux-media-server/</link>
		<comments>http://www.ghacks.net/2009/10/29/set-up-a-linux-media-server/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 17:51:54 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[DAAP]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[mp3 server]]></category>
		<category><![CDATA[multimedia server]]></category>
		<category><![CDATA[music server]]></category>
		<category><![CDATA[songbird]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17860</guid>
		<description><![CDATA[Do you have multiple machines around your house that would like to share a centralized server for multi-media? Having such a server for music allows for consolidation, ease of use, and space saving on client PCs. Of course to many users, the idea of setting up a multi-media server sounds like it would be a [...]]]></description>
			<content:encoded><![CDATA[<p>Do you have multiple machines around your house that would like to share a centralized server for multi-media? Having such a server for music allows for consolidation, ease of use, and space saving on client PCs. Of course to many users, the idea of setting up a multi-media server sounds like it would be a nightmare&#8230;especially on the Linux platform. That couldn&#8217;t be further from the truth.</p>
<p><a title="Firefly Media Server" href="http://www.fireflymediaserver.org/" target="_blank">The Firefly Media Server</a> (formerly mt-daap) is a fast DAAP server that is simple to install and even easier to configure. Firefly resides on a single Linux machine that doesn&#8217;t have to be a powerhouse. In fact, you can install this lightweight server on Ubuntu Server and you&#8217;re almost ready to go. In this article you will see how to do just that &#8211; install and configure Firefly Media Server on Ubuntu Server.</p>
<p><span id="more-17860"></span><strong>Features</strong></p>
<p>The Firefly server has all of the features you will want in a DAAP server:</p>
<ul>
<li><span style="background-color: #ffffff">Supports Unix/POSIX</span></li>
<li><span style="background-color: #ffffff">Beta for Windows in the works</span></li>
<li><span style="background-color: #ffffff">On the fly transcoding of OGG, FLAC, Apple Lossless, and WM</span></li>
<li><span style="background-color: #ffffff">User-created smart playlist support</span></li>
<li><span style="background-color: #ffffff">Integrates with iTunes and many other DAAP-supporting media players</span></li>
<li><span style="background-color: #ffffff">Serve streaming radio stations</span></li>
</ul>
<p><strong>Installation</strong></p>
<p>Since we are installing on a Ubuntu Server, the installation is simple:</p>
<ol>
<li><span style="background-color: #ffffff">Open up a terminal (or just log into your servers&#8217; console)</span></li>
<li><span style="background-color: #ffffff">Issue the command <em>sudo apt-get install mt-daap</em></span></li>
<li><span style="background-color: #ffffff">Enter your user password</span></li>
</ol>
<p>That&#8217;s it. Now it&#8217;s time to set it up.</p>
<p><strong>Configuration file</strong></p>
<p>There is only one configuration file for Firefly: <strong>/etc/mt-daapd.conf</strong>. This file is quite easy to set up. For a basic DAAP server, out of the box, there is really only one option you must configure. If you open up the configuration file look for the line:</p>
<p><em>mp3_dir = /home/media/music</em></p>
<p>This is the line you will need to change to reflect the directory you will serve your media from. For my setup I created a new sub-directory in <strong>/opt </strong>called <strong>music</strong>. Do this with the command:</p>
<p><em>sudo mkdir /opt/media</em></p>
<p>Now you have to make that directory readable by the DAAP server with the command:</p>
<p><em>sudo chmod ug+r -R /opt/media</em></p>
<p>Now all files and sub-directories created with the <strong>/opt/media</strong> directory will have the proper permissions such that the DAAP server can serve up the files.</p>
<p>Of course what you have just set up is a very basic DAAP server. There are a lot of other options within the configuration file you can set up, such as:</p>
<ul>
<li><span style="background-color: #ffffff">servername: This is the name your DAAP server will broadcast. By default the server will be listed as Firefly <em>RELEASE_NUMBER HOSTNAME</em> (Where <em>RELEASE_NUMBER </em>is the release number of the Firefly installation and <em>HOSTNAME</em> is the hostname of the server.)</span></li>
<li><span style="background-color: #ffffff">password protection: This will cause any user attempting to access the DAAP server to have to enter a password in order to see the files. </span></li>
<li><span style="background-color: #ffffff">port: If you need to use a port other than the default (3689), configure it here.</span></li>
<li><span style="background-color: #ffffff">extensions: The file types you want to allow to be served by your DAAP server.</span></li>
<li><span style="background-color: #ffffff">Valid codectypes: These are the configurations for the format conversion. There are already lines for this in the configuration file &#8211; you just have to uncomment the ones you want to add for internal conversion.</span></li>
<li><span style="background-color: #ffffff">rescan_interval: If you want to enable background scanning you need to uncomment this entry and set an interval. This will enable you to add new files without having to restart the DAAP server to pick up the new files. Very handy if you frequently add new files.</span></li>
</ul>
<p>There are other configuration options, but those are the ones you will want to focus on first.</p>
<p><strong>Start the daemon</strong></p>
<p>After your configuration file is complete, go ahead and move your media files into the directory and then start the server with the command:</p>
<p><em>sudo /etc/init.d/mt-daap start</em></p>
<p>With the server up and running you can fire up a DAAP enabled client, like iTunes or Songbird (Note: Songbird requires the addition of a DAAP add on), and you should automatically see the files on the DAAP server.</p>
<p><strong>Final thoughts</strong></p>
<p>Setting up a DAAP server is a great idea for a small internal network where you want to be able to share out a multi-media library. Anyone looking to set this up, and has a Linux server up and running, would do well to give Firefly a try. The simplicity, size, and speed of this server makes it the perfect candidate.</p>

	Tags: <a href="http://www.ghacks.net/tag/daap/" title="DAAP" rel="tag">DAAP</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/mp3-server/" title="mp3 server" rel="tag">mp3 server</a>, <a href="http://www.ghacks.net/tag/multimedia-server/" title="multimedia server" rel="tag">multimedia server</a>, <a href="http://www.ghacks.net/tag/music-server/" title="music server" rel="tag">music server</a>, <a href="http://www.ghacks.net/tag/songbird/" title="songbird" rel="tag">songbird</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/08/03/songbird-07-rc1-released/" title="Songbird 0.7 RC1 Released (August 3, 2008)">Songbird 0.7 RC1 Released</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/05/29/itunes-music-server-pulptunes/" title="iTunes Music Server pulpTunes (May 29, 2009)">iTunes Music Server pulpTunes</a> (7)</li>
	<li><a href="http://www.ghacks.net/2008/07/16/winamp-ipod-plugin-2/" title="Winamp iPod Plugin (July 16, 2008)">Winamp iPod Plugin</a> (5)</li>
	<li><a href="http://www.ghacks.net/2007/06/11/view-and-edit-information-about-songs-with-more-tunes/" title="View and Edit information of songs with More Tunes (June 11, 2007)">View and Edit information of songs with More Tunes</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/08/22/the-complete-media-player-review-part-1-2/" title="The Complete Media Player Review (Part 1) (August 22, 2008)">The Complete Media Player Review (Part 1)</a> (15)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/29/set-up-a-linux-media-server/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Linux equivalents to popular Mac apps</title>
		<link>http://www.ghacks.net/2009/10/15/linux-equivalents-to-popular-mac-apps/</link>
		<comments>http://www.ghacks.net/2009/10/15/linux-equivalents-to-popular-mac-apps/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 18:50:02 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[iCal]]></category>
		<category><![CDATA[iPhoto]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[iWork]]></category>
		<category><![CDATA[linux equivalent applications]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17302</guid>
		<description><![CDATA[In my most recent article (&#8221;Five tips to help ease the migration from Mac to Linux&#8220;) I outlined ways to help end-users transfer from the Mac operating system to the Linux operating system. It was suggested to me that I should cover applications that could serve as replacements for popular Mac apps. Your wish is [...]]]></description>
			<content:encoded><![CDATA[<p>In my most recent article (&#8221;<a title="Mac to Linux" href="http://www.ghacks.net/2009/10/14/five-tips-to-help-ease-the-migration-from-mac-to-linux/" target="_blank">Five tips to help ease the migration from Mac to Linux</a>&#8220;) I outlined ways to help end-users transfer from the Mac operating system to the Linux operating system. It was suggested to me that I should cover applications that could serve as replacements for popular Mac apps. Your wish is my command.</p>
<p>In this article I will outline a few of the possibilities that can be used to replace the beloved applications often used in Mac. In some cases their may be equivalents that are nearly identical. In some cases, however, there may be equivalents that miss some features, or even offer better features. Either way, after this article, you should feel much more comfortable about migrating from OS X to Linux.</p>
<p><span id="more-17302"></span>In the previous article I already mentioned using <a title="Songbird" href="http://getsongbird.com/" target="_blank">Songbird</a> as a replacement for iTunes. Personally I prefer Songbird to iTunes. The only downfall is that Songbird can not yet communicate to either the iPhone or the iTouch. Yet. There is another tool that is currently in development that will most likely change that. But for now &#8211; you can use Songbird as a replacement for iTunes &#8211; just don&#8217;t expect Songbird to communicate with your iPhone/iTouch.</p>
<p><strong>Garage Band</strong></p>
<p>For those looking to compose music on your Linux machine, a good replacement for Garage Band is <a title="Jokosher" href="http://www.jokosher.org/" target="_blank">Jokosher</a>. Jokosher is a simple, powerful multi-track recording studio. With this outstanding tool you can import music, record instruments, mix down, set tempos, and more. You will not, however, find a large collection of pre-recorded instruments and sounds to add and manipulate. But, if you have a <a title="Freesound" href="http://www.freesound.org/" target="_blank">Freesound</a> account, you can import anything from their. Unlike Garage Band, Jokosher is really more a user-friendly multi-track recorder. So don&#8217;t expect to just open up the application and start piecing together music without picking up an instrument.</p>
<p>For more information on other audio creating software take a look at <a title="Linux Sound" href="http://linux-sound.org/" target="_blank">Linux-Sound.org</a>. In my humble opinion, if you are looking for mult-media creation, your best bet is to download <a title="Ubuntu Studio" href="http://ubuntustudio.org/" target="_blank">Ubuntu Studio</a> which will include so man pre-installed applications for media creation/editing.</p>
<p><strong>iWork</strong></p>
<p><strong></strong>This one should be obvious. If you&#8217;re looking for an office suite to take care of all your office needs, look no further than <a title="OpenOffice" href="http://www.openoffice.org" target="_blank">OpenOffice</a>. Although OpenOffice may have a different look and feel, you will find it just as easy to use AND it includes more features and applications than iWork.</p>
<p><strong>iCal</strong></p>
<p>If you like Apple&#8217;s stand alone calendar (that also integrates with other applications) you can install the stand alone <a title="Sunbird" href="http://www.mozilla.org/projects/calendar/sunbird/" target="_blank">Sunbird</a> calendar. Sunbird was created by Mozilla so it has a very <a href="http://www.ghacks.net/tag/firefox/">Firefox</a>/Thunderbird feel to it. Sunbird is very close to a feature-for-feature equivalent to iCal.</p>
<p><strong>iPhoto</strong></p>
<p>My wife uses a Mac and she HATES iPhoto. But it is the standard for Mac photo management. For Linux there is the <a title="F-spot" href="http://f-spot.org/Main_Page" target="_blank">F-spot</a> photo management tool. F-spot not only manages your photo collections, but will work with your digital camera as an import tool. F-spot is actually easier to use than iPhoto and will not have you fighting to try to get a piece of software to do something you KNOW it should do, but won&#8217;t.</p>
<p><strong>Final thoughts</strong></p>
<p>It&#8217;s not an exhaustive list, but it will help you get by with the main applications one would use on a modern Mac computer.  If you have a Mac-based application you are looking for a Linux equivalent, let me know what that is and I will attempt to locate an equivalent for you.</p>

	Tags: <a href="http://www.ghacks.net/tag/ical/" title="iCal" rel="tag">iCal</a>, <a href="http://www.ghacks.net/tag/iphoto/" title="iPhoto" rel="tag">iPhoto</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/iwork/" title="iWork" rel="tag">iWork</a>, <a href="http://www.ghacks.net/tag/linux-equivalent-applications/" title="linux equivalent applications" rel="tag">linux equivalent applications</a>, <a href="http://www.ghacks.net/tag/mac/" title="mac" rel="tag">mac</a>, <a href="http://www.ghacks.net/tag/os-x/" title="os x" rel="tag">os x</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/09/05/xnjb-transfer-music-to-and-from-a-mtp-mp3-player-on-a-mac/" title="XNJB: Transfer music to and from a MTP MP3 player on a Mac (September 5, 2009)">XNJB: Transfer music to and from a MTP MP3 player on a Mac</a> (0)</li>
	<li><a href="http://www.ghacks.net/2007/02/06/replace-itunes-with-floola/" title="Replace iTunes with Floola (February 6, 2007)">Replace iTunes with Floola</a> (12)</li>
	<li><a href="http://www.ghacks.net/2009/09/20/quickly-capture-screens-and-share-them-on-os-x-with-skitch/" title="Quickly capture screens and share them on OS X with Skitch (September 20, 2009)">Quickly capture screens and share them on OS X with Skitch</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/02/08/jdarkroom-productively-word-process/" title="jDarkRoom: Productively word process (February 8, 2009)">jDarkRoom: Productively word process</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/10/14/five-tips-to-help-ease-the-migration-from-mac-to-linux/" title="Five tips to help ease the migration from Mac to Linux (October 14, 2009)">Five tips to help ease the migration from Mac to Linux</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/15/linux-equivalents-to-popular-mac-apps/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How To Record iTunes Radio</title>
		<link>http://www.ghacks.net/2009/09/19/how-to-record-itunes-radio/</link>
		<comments>http://www.ghacks.net/2009/09/19/how-to-record-itunes-radio/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 14:45:28 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[itunes radio]]></category>
		<category><![CDATA[record itunes radio]]></category>
		<category><![CDATA[record radio]]></category>
		<category><![CDATA[stationripper]]></category>
		<category><![CDATA[streamripper]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=16489</guid>
		<description><![CDATA[Ghacks reader Mitch send me an email today asking for a free solution to record iTunes radio stations. Apple&#8217;s iTunes software does not only offer music management features and an online shop for purchasing music and videos but also the means to listen to Internet radio and podcasts. We all know that Internet radio is [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/05/itunes.png" alt="itunes" title="itunes" width="110" height="87" class="alignleft size-full wp-image-12738" />Ghacks reader Mitch send me an email today asking for a free solution to record iTunes radio stations. Apple&#8217;s iTunes software does not only offer music management features and an online shop for purchasing music and videos but also the means to listen to Internet radio and podcasts. We all know that Internet radio is streamed to the listeners and one of the best programs to rip Internet radio streams is Streamripper. Streamripper on the other hand has been designed mainly with Winamp and Shoutcast radio stations in mind.</p>
<p>An easier solution to record iTunes radio is the Streamripper based radio recorder Stationripper. Stationripper comes with many additional features including support to record various Internet radio streams like those from iTunes radio but also Last.fm.</p>
<p><span id="more-16489"></span>The best aspect is that it is actually very easy to start recording the streams. Here is how it is done:</p>
<p>Start by downloading <a href="http://recorditunesradio.com/">Stationripper</a> from the official website. The free version is just fine but comes with a few limitations like being only able to record two Internet radio streams at a time or missing, more advertisement than the commercial versions (not a huge problem if you minimize the application after starting to record the iTunes radio streams) or support for last.fm or Pandora. The free version offers on the other hand everything that is needed to record up to two iTunes radio stations at once. It does impose a limitation of 25 songs per session before the application needs to be restarted.</p>
<p>Start Stationripper after installation and start iTunes as well. The most comfortable way is to place the applications next to each other on the computer screen.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/09/record_itunes_radio-500x296.jpg" alt="record itunes radio" title="record itunes radio" width="500" height="296" class="alignnone size-medium wp-image-16490" /></p>
<p>All that needs to be done now is to drag and drop the selected iTunes radio station into the lower part of the Stationripper interface to start recording the iTunes radio station. Free users can drag and drop two stations into the interface which will automatically be recorded from that moment on.</p>
<p>The directory where the iTunes radio songs get saved can be changed in the program&#8217;s options. Stationripper will automatically created a directory in the download folder for every iTunes radio station that is being dragged and dropped into the interface. The songs will be saved in the format band name &#8211; song name in the directory including an image of the record or album if available. </p>
<p>Here is a second solution if you do not like the 25 song limit that is imposed on users. You do need the latest version of <a href="http://sourceforge.net/projects/streamripper/files/streamripper%20%28current%29/">Streamripper</a> for this. Install Streamripper (complete) and open it and iTunes. Locate the iTunes radio station that you want to record. Drag and drop it into the left sidebar of iTunes to create a playlist. </p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/09/record_itunes_radio_stations-500x336.jpg" alt="record itunes radio stations" title="record itunes radio stations" width="500" height="336" class="alignnone size-medium wp-image-16491" /></p>
<p>Select that new playlist and right-click on the only entry in the song list. Select Get Info from the menu to open detailed information about that radio station.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/09/record_itunes_radio_streams-499x335.jpg" alt="record itunes radio streams" title="record itunes radio streams" width="499" height="335" class="alignnone size-medium wp-image-16492" /></p>
<p>A section entitled Where should be visible in the first tab that is showing up. Where lists the url of the iTunes radio stream. This url needs to be copied. A click on Edit Url will open the url which can then be copied with Ctrl C after selecting all of it (or by selecting the url and right-clicking it and selecting Copy from the context menu).</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/09/itunes_radio_urls-500x337.jpg" alt="itunes radio urls" title="itunes radio urls" width="500" height="337" class="alignnone size-medium wp-image-16493" /></p>
<p>We need to open or activate Streamripper now. A right-click in its interface will display a context menu with the option to Load a url.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/09/record_itunes_radio2.jpg" alt="record itunes radio 2" title="record itunes radio 2" width="272" height="151" class="alignnone size-full wp-image-16494" /></p>
<p>The full url of the iTunes radio station needs to be pasted into the form. A click on OK and on Start in the main menu will start the identification and connection process.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/09/itunes_radio_save.jpg" alt="itunes radio save" title="itunes radio save" width="276" height="150" class="alignnone size-full wp-image-16495" /></p>
<p>Streamripper will also create separate directories for every iTunes radio stream. It usually can identify song names and artists as well. Best of all, it will record as long as it is running. Users who want to record multiple iTunes radio stations can simply open another instance of Streamripper and repeat the process.</p>

	Tags: <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/itunes-radio/" title="itunes radio" rel="tag">itunes radio</a>, <a href="http://www.ghacks.net/tag/record-itunes-radio/" title="record itunes radio" rel="tag">record itunes radio</a>, <a href="http://www.ghacks.net/tag/record-radio/" title="record radio" rel="tag">record radio</a>, <a href="http://www.ghacks.net/tag/stationripper/" title="stationripper" rel="tag">stationripper</a>, <a href="http://www.ghacks.net/tag/streamripper/" title="streamripper" rel="tag">streamripper</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/07/16/winamp-ipod-plugin-2/" title="Winamp iPod Plugin (July 16, 2008)">Winamp iPod Plugin</a> (5)</li>
	<li><a href="http://www.ghacks.net/2007/06/11/view-and-edit-information-about-songs-with-more-tunes/" title="View and Edit information of songs with More Tunes (June 11, 2007)">View and Edit information of songs with More Tunes</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/04/07/using-streamripper-to-save-internet-radio-tracks/" title="Using Streamripper to save Internet Radio tracks (April 7, 2008)">Using Streamripper to save Internet Radio tracks</a> (11)</li>
	<li><a href="http://www.ghacks.net/2008/08/22/the-complete-media-player-review-part-1-2/" title="The Complete Media Player Review (Part 1) (August 22, 2008)">The Complete Media Player Review (Part 1)</a> (15)</li>
	<li><a href="http://www.ghacks.net/2009/02/12/take-keyboard-control-of-itunes-with-itunes-media-keys/" title="Take Keyboard Control Of iTunes With iTunes Media Keys (February 12, 2009)">Take Keyboard Control Of iTunes With iTunes Media Keys</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/09/19/how-to-record-itunes-radio/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Install iTunes Without Unnecessary Software</title>
		<link>http://www.ghacks.net/2009/09/10/install-itunes-without-unnecessary-software/</link>
		<comments>http://www.ghacks.net/2009/09/10/install-itunes-without-unnecessary-software/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 14:32:55 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[apple itunes]]></category>
		<category><![CDATA[bonjour]]></category>
		<category><![CDATA[iPodService]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[itunes 9]]></category>
		<category><![CDATA[itunes custom install]]></category>
		<category><![CDATA[ituneshelper]]></category>
		<category><![CDATA[quicktime]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=16191</guid>
		<description><![CDATA[Apple has just released iTunes 9 and the web is full of reviews that compare the new version to previous ones and outline the changes and new additions that Apple has packed into the new version of their popular music management software. The new version does not offer that many new features but most users [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/05/itunes.png" alt="itunes" title="itunes" width="110" height="87" class="alignleft size-full wp-image-12738" />Apple has just released iTunes 9 and the web is full of reviews that compare the new version to previous ones and outline the changes and new additions that Apple has packed into the new version of their popular music management software. The new version does not offer that many new features but most users would probably like to update their old version of iTunes anyway. Something that has not changed is the inclusion of many additional software programs and services that many users consider unnecessary. These software programs include the <a href="http://www.ghacks.net/2008/10/08/au-revoir-bonjour/">Bonjour</a> service, Apple Quicktime, MobileMe support or the <a href="http://www.ghacks.net/2009/06/07/disable-applemobiledeviceserviceexe-ituneshelperexe-and-ipodserviceexe/">iTunesHelper</a> and <a href="http://www.ghacks.net/2009/06/07/disable-applemobiledeviceserviceexe-ituneshelperexe-and-ipodserviceexe/">iPodService</a> startup processes.</p>
<p><span id="more-16191"></span>Ajua has updated the iTunes switchless installer which will install iTunes without this unnecessary software. The user needs to install Quicktime Alternative (or Apple Quicktime) separately before this modified version of iTunes can be installed. The functionality remains the same for most users. Only those that require the Bonjour service (is there any Windows user who does?) or MobileMe support obviously need to install the official version provided by Apple.</p>
<p>The latest iTunes switchless installer can be <a href="http://www.ajuaonline.com/custom-installers/">downloaded</a> from the developer&#8217;s website. It is available in English and a multi-language version. The switchless installer was tested with Apple Quicktime installed. Some users reported that Quicktime Alternative 2.9.2. caused problems during installation which might mean that the software needs to be updated to be compatible with iTunes 9.</p>

	Tags: <a href="http://www.ghacks.net/tag/apple-itunes/" title="apple itunes" rel="tag">apple itunes</a>, <a href="http://www.ghacks.net/tag/bonjour/" title="bonjour" rel="tag">bonjour</a>, <a href="http://www.ghacks.net/tag/ipodservice/" title="iPodService" rel="tag">iPodService</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/itunes-9/" title="itunes 9" rel="tag">itunes 9</a>, <a href="http://www.ghacks.net/tag/itunes-custom-install/" title="itunes custom install" rel="tag">itunes custom install</a>, <a href="http://www.ghacks.net/tag/ituneshelper/" title="ituneshelper" rel="tag">ituneshelper</a>, <a href="http://www.ghacks.net/tag/quicktime/" title="quicktime" rel="tag">quicktime</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/04/04/install-itunes-without-quicktime-and-bonjour/" title="Install iTunes Without Quicktime And Bonjour (April 4, 2009)">Install iTunes Without Quicktime And Bonjour</a> (16)</li>
	<li><a href="http://www.ghacks.net/2009/06/07/disable-applemobiledeviceserviceexe-ituneshelperexe-and-ipodserviceexe/" title="Disable AppleMobileDeviceService.Exe, iTunesHelper.exe and iPodService.exe (June 7, 2009)">Disable AppleMobileDeviceService.Exe, iTunesHelper.exe and iPodService.exe</a> (17)</li>
	<li><a href="http://www.ghacks.net/2009/02/12/take-keyboard-control-of-itunes-with-itunes-media-keys/" title="Take Keyboard Control Of iTunes With iTunes Media Keys (February 12, 2009)">Take Keyboard Control Of iTunes With iTunes Media Keys</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/11/30/speed-up-itunes-downloads-with-autobahn/" title="Speed Up iTunes Downloads With Autobahn (November 30, 2008)">Speed Up iTunes Downloads With Autobahn</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/07/24/palm-defies-apple-itunes-working-again/" title="Palm Defies Apple &#8211; iTunes Working Again (July 24, 2009)">Palm Defies Apple &#8211; iTunes Working Again</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/09/10/install-itunes-without-unnecessary-software/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Palm Defies Apple &#8211; iTunes Working Again</title>
		<link>http://www.ghacks.net/2009/07/24/palm-defies-apple-itunes-working-again/</link>
		<comments>http://www.ghacks.net/2009/07/24/palm-defies-apple-itunes-working-again/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 07:50:22 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mobiles]]></category>
		<category><![CDATA[Palm]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[apple itunes]]></category>
		<category><![CDATA[cell-phone]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[itunes pre]]></category>
		<category><![CDATA[palm]]></category>
		<category><![CDATA[palm pre]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=14698</guid>
		<description><![CDATA[This is shaping up to be one hell of a war between Apple and Palm. For those of you who have the Palm Pre, you are aware that Apple recently sent out an update to the iTunes software (8.2.1) a few days ago that bricked the Palm Pre’s syncing feature.
It was noted for sometime now [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/07/palm.jpg" alt="palm" title="palm" width="128" height="128" class="alignleft size-full wp-image-14499" />This is shaping up to be one hell of a war between Apple and Palm. For those of you who have the Palm Pre, you are aware that Apple recently sent out an update to the iTunes software (8.2.1) a few days ago that bricked the Palm Pre’s syncing feature.</p>
<p>It was noted for sometime now that the Pre could sync with the iTunes store based on a hack. And Apple did warn that it could be gone soon. Well they did and Pre owners found out that they could no longer sync with iTunes 8.2.1.</p>
<p>For those wondering, the problem that Apple had with the Pre’s syncing capabilities is the fact it tricked iTunes into thinking it was an iPod. When you connected the Pre to iTunes it would show up as “iPod” and according to the boys at Cupertino, this was unlawful. Apple made no bones about the update, calling Palm by name regarding the reason for the patch to the ever so popular music software.</p>
<p><span id="more-14698"></span>Well it hasn’t been a good week and already Palm has answered Apple’s challenge. Just today I downloaded webOS version 1.1 and what would you know? iTunes tethering was back. Not only has Palm gone around Apple’s block they have specifically mentioned it as a reason for the update.</p>
<p>So of course everyone is asking what is going to happen next. First I gotta say that Palm has balls to be doing this, but on second their new CEO happens to be the former head of Apple’s iPod division so that could be a factor as to why they are so brazen. Jon probably knows exactly how to deal with Apple. And more importantly, since he was involved with iTunes and iPod for so long, knows all the dirty secrets about it.</p>
<p>I’m not sure what Apple is going to do now, because apparently Palm has made it clear that they are not going to go down without a fight. The only thing I could think of to permanently fix this problem would be for Apple to hard code software recognition into the iPod’s USB connector, and that could be too expensive. There other option is probably to try and sue Palm.</p>
<p>Either way, this is gearing up to be very interesting and its about bloody time. Never seen one of these in the gadget world before. So who are you rooting for? Care to say in the comments below?</p>

	Tags: <a href="http://www.ghacks.net/tag/apple/" title="apple" rel="tag">apple</a>, <a href="http://www.ghacks.net/tag/apple-itunes/" title="apple itunes" rel="tag">apple itunes</a>, <a href="http://www.ghacks.net/tag/cell-phone/" title="cell-phone" rel="tag">cell-phone</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/itunes-pre/" title="itunes pre" rel="tag">itunes pre</a>, <a href="http://www.ghacks.net/tag/palm/" title="palm" rel="tag">palm</a>, <a href="http://www.ghacks.net/tag/palm-pre/" title="palm pre" rel="tag">palm pre</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/07/18/palm-mojo-sdk-released/" title="Palm Mojo SDK Released (July 18, 2009)">Palm Mojo SDK Released</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/02/24/itunes-control/" title="iTunes Control (February 24, 2008)">iTunes Control</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/03/17/apple-itunes-songs-cleanup/" title="Apple iTunes Songs Cleanup (March 17, 2009)">Apple iTunes Songs Cleanup</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/07/16/winamp-ipod-plugin-2/" title="Winamp iPod Plugin (July 16, 2008)">Winamp iPod Plugin</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/02/12/take-keyboard-control-of-itunes-with-itunes-media-keys/" title="Take Keyboard Control Of iTunes With iTunes Media Keys (February 12, 2009)">Take Keyboard Control Of iTunes With iTunes Media Keys</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/07/24/palm-defies-apple-itunes-working-again/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Disable AppleMobileDeviceService.Exe, iTunesHelper.exe and iPodService.exe</title>
		<link>http://www.ghacks.net/2009/06/07/disable-applemobiledeviceserviceexe-ituneshelperexe-and-ipodserviceexe/</link>
		<comments>http://www.ghacks.net/2009/06/07/disable-applemobiledeviceserviceexe-ituneshelperexe-and-ipodserviceexe/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 10:06:35 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[AppleMobileDeviceService]]></category>
		<category><![CDATA[AppleMobileDeviceService.Exe]]></category>
		<category><![CDATA[iPodService]]></category>
		<category><![CDATA[iPodService.exe]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[ituneshelper]]></category>
		<category><![CDATA[iTunesHelper.exe]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=13358</guid>
		<description><![CDATA[Users of the Microsoft Windows operating system who install the music manager iTunes will notice a large number of background processes that are connected to that program. The processes that all users are going to see are AppleMobileDeviceService.Exe, iTunesHelper.exe and iPodService.exe with some running in the background even if iTunes has not been opened since [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/05/itunes.png" alt="itunes" title="itunes" width="110" height="87" class="alignleft size-full wp-image-12738" />Users of the Microsoft Windows operating system who install the music manager iTunes will notice a large number of background processes that are connected to that program. The processes that all users are going to see are AppleMobileDeviceService.Exe, iTunesHelper.exe and iPodService.exe with some running in the background even if iTunes has not been opened since system start.</p>
<p>At least two of the processes seem to be connected to mobile devices like Apple&#8217;s iPod or iPhone which seems like a waste of system resources if none of these devices are owned by the computer user. To say it more clearly: Why would someone need to run these processes if they do not need them? The following paragraphs will show how to disable the three processes AppleMobileDeviceService.Exe, iTunesHelper.exe and iPodService.exe effectively.</p>
<p><span id="more-13358"></span><strong>Disable AppleMobileDeviceService.Exe</strong></p>
<p>AppleMobileDeviceService.Exe is a Windows Service that &#8220;provides the interface to Apple mobile devices&#8221;. It does not therefor make sense to run this service if no Apple mobile devices are owned by the user. The easiest way to disable the service is to press [Windows R], type in the run box [services.msc] and press the [enter] key on the computer keyboard.</p>
<p>This opens the Services window which displays all Windows Services. Locate the service Apple Mobile Device, right-click it and select Properties from the menu. Click on the Stop button first to stop the AppleMobileDeviceService.Exe service from running in this session.</p>
<p>Now click on the Startup type menu and change the type from Automatic to Disabled. A click on the Apply button will complete the process of disabling AppleMobileDeviceService.Exe.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/06/applemobiledeviceservice.jpg" alt="applemobiledeviceservice" title="applemobiledeviceservice" width="410" height="466" class="alignnone size-full wp-image-13356" /></p>
<p><strong>Disable iTunesHelper.exe</strong></p>
<p>The ituneshelper.exe process is also running in the background all the time. This process is however started from one of the autorun locations. Getting rid of it is quite easy. Press [Windows R], type in [msconfig.exe] and hit the [enter] key on the computer keyboard.</p>
<p>Switch to the Startup tab on top of the window and locate the iTunesHelper entry there. Uncheck that entry to disable the autostart of it when Windows starts. A click on Apply will complete the process. You do not need to restart Windows at this time.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/06/ituneshelper-500x333.jpg" alt="ituneshelper" title="ituneshelper" width="500" height="333" class="alignnone size-medium wp-image-13357" /></p>
<p><strong>Disable iPodService.exe</strong></p>
<p>This one is tricky. IpodService.exe is a Windows Service. The problem is that it will be launched by iTunes even if the service is set to be disabled. Closing iTunes on the other hand will not close the iPodService.exe from running in the background. Here is what needs to be done to get rid of this process as well.</p>
<p>Open Windows Services again by pressing [Windows R], typing in [services.msc] and hitting the [enter] key. Locate the service iPodService. It is described as &#8220;iPod hardware management service&#8221;. Right-click the service, click on the Stop button if it is running and set it to disabled in the startup type menu.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/06/ipodservice.jpg" alt="ipodservice" title="ipodservice" width="410" height="466" class="alignnone size-full wp-image-13359" /></p>
<p>The second step is needed as iPodservice.exe will be launched by iTunes even if it has been disabled. Locate the file iPod iPodservice.exe on the computer hard drive. It is by default installed into <strong>Program Files\iPod\bin</strong>.</p>
<p>Delete iPodservice.exe from the /bin/ directory and create a new text document. Give the text document the same name (iPodservice.exe). You should now have a 0 Kilobyte iPodservice.exe file in the /bin/ folder. To test if the procedure worked start iTunes. If everything worked out fine iPodservice.exe should not have been started and should not show up as a process in the Windows Task Manager.</p>
<p><strong>Verdict:</strong> Windows users who want to use iTunes but do not own an iPod or other Apple device can now disable unneeded processes from their computer system. It does not make sense having them run in the background all the time.</p>

	Tags: <a href="http://www.ghacks.net/tag/apple/" title="apple" rel="tag">apple</a>, <a href="http://www.ghacks.net/tag/applemobiledeviceservice/" title="AppleMobileDeviceService" rel="tag">AppleMobileDeviceService</a>, <a href="http://www.ghacks.net/tag/applemobiledeviceserviceexe/" title="AppleMobileDeviceService.Exe" rel="tag">AppleMobileDeviceService.Exe</a>, <a href="http://www.ghacks.net/tag/ipod/" title="iPod" rel="tag">iPod</a>, <a href="http://www.ghacks.net/tag/ipodservice/" title="iPodService" rel="tag">iPodService</a>, <a href="http://www.ghacks.net/tag/ipodserviceexe/" title="iPodService.exe" rel="tag">iPodService.exe</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/ituneshelper/" title="ituneshelper" rel="tag">ituneshelper</a>, <a href="http://www.ghacks.net/tag/ituneshelperexe/" title="iTunesHelper.exe" rel="tag">iTunesHelper.exe</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/07/16/winamp-ipod-plugin-2/" title="Winamp iPod Plugin (July 16, 2008)">Winamp iPod Plugin</a> (5)</li>
	<li><a href="http://www.ghacks.net/2007/06/16/sync-itunes-with-non-ipod-mp3-players/" title="Sync iTunes with non iPod mp3 players (June 16, 2007)">Sync iTunes with non iPod mp3 players</a> (11)</li>
	<li><a href="http://www.ghacks.net/2008/04/24/sync-any-mp3-player-with-itunes/" title="Sync any mp3 player with iTunes (April 24, 2008)">Sync any mp3 player with iTunes</a> (2)</li>
	<li><a href="http://www.ghacks.net/2007/01/26/share-the-itunes-library-on-a-network/" title="Share the iTunes Library on a network (January 26, 2007)">Share the iTunes Library on a network</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/03/20/share-songs-with-mojo-and-itunes/" title="Share Songs with Mojo and iTunes (March 20, 2008)">Share Songs with Mojo and iTunes</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/06/07/disable-applemobiledeviceserviceexe-ituneshelperexe-and-ipodserviceexe/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>iTunes Music Server pulpTunes</title>
		<link>http://www.ghacks.net/2009/05/29/itunes-music-server-pulptunes/</link>
		<comments>http://www.ghacks.net/2009/05/29/itunes-music-server-pulptunes/#comments</comments>
		<pubDate>Fri, 29 May 2009 21:44:28 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[itunes music]]></category>
		<category><![CDATA[linux software]]></category>
		<category><![CDATA[mac software]]></category>
		<category><![CDATA[music server]]></category>
		<category><![CDATA[pulptunes]]></category>
		<category><![CDATA[stream music]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/05/29/itunes-music-server-pulptunes/</guid>
		<description><![CDATA[Apple iTunes is one of the most popular music managers and players. While it can be used to play music locally it does not offer any means to play music over the Internet which might be interesting for users who work on different computer systems, e.g. a home computer and one at the office.
Pulptunes is [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/05/itunes_music_server.jpg" alt="itunes music server" title="itunes music server" width="128" height="54" class="alignleft size-full wp-image-13160" />Apple iTunes is one of the most popular music managers and players. While it can be used to play music locally it does not offer any means to play music over the Internet which might be interesting for users who work on different computer systems, e.g. a home computer and one at the office.</p>
<p>Pulptunes is a iTunes music server that can stream mp3 and m4a files over the Internet. The music can then be accessed in any modern web browser including Microsoft&#8217;s <a href="http://www.ghacks.net/tag/internet-explorer/">Internet Explorer</a>, <a href="http://www.ghacks.net/tag/firefox/">Mozilla Firefox</a> or <a href="http://www.ghacks.net/category/browsing/opera/">Opera</a>. The user can then access the music that is stored on his local computer system over the Internet.</p>
<p><span id="more-13162"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/05/itunes-500x299.jpg" alt="itunes" title="itunes" width="500" height="299" class="alignnone size-medium wp-image-13163" /></p>
<p><a href="http://www.pulptunes.com/">PulpTunes</a> is not only available for Windows operating systems but also Linux and Macintosh. The software program tries to find the location of the iTunes XML file automatically which worked fine on the test system. Linux users and those where it was not found automatically need to add the path to the program manually.</p>
<p>Songs can be played directly in the web browser or downloaded with a right-click. All iTunes playlists and genres are available in the interface which makes it easier to locate albums or songs. A search is also provided to search the music collection.</p>
<p>Advanced options are available that include a basic user management so that only authorized users have access to the web service. Other options include:</p>
<ul>
<li>Displays cover art if found</li>
<li>Generate direct links to songs or playlists to send to your friends</li>
<li>iTunes DJ integration</li>
<li>Command-line mode for server environments</li>
<li>Adjustable buffer level</li>
</ul>
<p>PulpTunes needs to be running on the local computer system so that users can connect to the service over the Internet.</p>

	Tags: <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/itunes-music/" title="itunes music" rel="tag">itunes music</a>, <a href="http://www.ghacks.net/tag/linux-software/" title="linux software" rel="tag">linux software</a>, <a href="http://www.ghacks.net/tag/mac-software/" title="mac software" rel="tag">mac software</a>, <a href="http://www.ghacks.net/tag/music-server/" title="music server" rel="tag">music server</a>, <a href="http://www.ghacks.net/tag/pulptunes/" title="pulptunes" rel="tag">pulptunes</a>, <a href="http://www.ghacks.net/tag/stream-music/" title="stream music" rel="tag">stream music</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/06/18/stream-music-with-subsonic/" title="Stream Music With Subsonic (June 18, 2009)">Stream Music With Subsonic</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/05/20/music-management-software-jajuk/" title="Music Management Software Jajuk (May 20, 2009)">Music Management Software Jajuk</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/07/07/vlc-media-player-1-0-released/" title="VLC Media Player 1.0 Released (July 7, 2009)">VLC Media Player 1.0 Released</a> (9)</li>
	<li><a href="http://www.ghacks.net/2009/08/25/prep-for-gre-gmat-sat-tests-with-words/" title="Prep For GRE, GMAT, SAT Tests With Words (August 25, 2009)">Prep For GRE, GMAT, SAT Tests With Words</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/02/05/photo-collage/" title="Photo Collage (February 5, 2009)">Photo Collage</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/05/29/itunes-music-server-pulptunes/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Music Management Software Jajuk</title>
		<link>http://www.ghacks.net/2009/05/20/music-management-software-jajuk/</link>
		<comments>http://www.ghacks.net/2009/05/20/music-management-software-jajuk/#comments</comments>
		<pubDate>Wed, 20 May 2009 19:12:29 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[jajuk]]></category>
		<category><![CDATA[linux software]]></category>
		<category><![CDATA[mac software]]></category>
		<category><![CDATA[media monkey]]></category>
		<category><![CDATA[music management]]></category>
		<category><![CDATA[music management software]]></category>
		<category><![CDATA[music manager]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/05/20/music-management-software-jajuk/</guid>
		<description><![CDATA[Jajuk is a very comprehensive and feature rich Open Source music management software written in Java. The software program is therefor available not only for the Microsoft Windows operating system but also Linux and Apple Macintosh computer systems. A first directory containing music files has to be selected after the program installation. Jajuk will automatically [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/05/jajuk.jpg" alt="jajuk" title="jajuk" width="108" height="102" class="alignleft size-full wp-image-12958" />Jajuk is a very comprehensive and feature rich Open Source music management software written in Java. The software program is therefor available not only for the Microsoft Windows operating system but also Linux and Apple Macintosh computer systems. A first directory containing music files has to be selected after the program installation. Jajuk will automatically scan the directory for all supported music formats and add them to its database. Additional directories containing music can be added in the settings of the music management software. One interesting feature is that Jajuk will automatically check these directories regularly for updates.</p>
<p><span id="more-12961"></span>A look at the interface might confuse some users as it is packed with many buttons and functions. It can be divided into three parts. The menu toolbar, a sidebar that switches between different display modes and the main window that is divided in two rows as well.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/05/advanced_jukebox-500x334.jpg" alt="advanced jukebox" title="advanced jukebox" width="500" height="334" class="alignnone size-medium wp-image-12960" /></p>
<p>The left sidebar contains the following modes:</p>
<ul>
<li>Simple Mode: Contains a listing of all music tracks as well as suggestions on the top which are computed after time.Suggestions include preferred, newest, rarely listen, other albums and similar artists.</li>
<li>Files: A file browser that displays a directory tree with all music directories that have been added to the software. Filters, covers and a queue to create playlists are provided here as well.</li>
<li>Tracks: Tracks sorted by genre using their mp3 tags. Filters, covers and the queue are offered in this menu as well.</li>
<li>Albums: Displays either an album catalog that displays the album art or a albums table. The thumbnail size of the cover can be changed on the fly.</li>
<li>Playlists: Contains an overview of all playlists on the system. Playlists are divided into new, best of, novelties and bookmarks. Again with options to save playlists.</li>
<li>Display: Display the cover, lyrics and an animation while playing music. Covers and lyrics are automatically loaded from the Internet. </li>
<li>Information: Displays information about the current band on Wikipedia.</li>
<li>Config: Dozens of settings.</li>
<li>Stats: Displays tracks per monht, size by directory, collection size by month and the genres</li>
</ul>
<p>The software is packed with additional features that are interesting. It contains a so called DJ mode which makes it easy to create playlists based on factors like proportions (e.g. 20% heavy metal, 30% rock), transitions (Heavy &#8211;> Pop) or ambience (Party, Soft).</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/05/music_management_software-500x334.jpg" alt="music management software" title="music management software" width="500" height="334" class="alignnone size-medium wp-image-12962" /></p>
<p>Additional features of interest:</p>
<ul>
<li>Mp3 tag editor (Ogg,ID3 V1/V2, WMA, Flac), Online (CDDB) retagging </li>
<li>Finding duplicate files</li>
<li>Configuration of web radios</li>
<li>Last.fm information queries, scrobble</li>
<li>CD Scanner</li>
<li>Keyboard controls</li>
<li>Alarm clock</li>
</ul>
<p><a href="http://jajuk.info/index.php/Download">Jajuk</a> is an interesting alternative to music management programs like Media Monkey or iTunes. </p>

	Tags: <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/jajuk/" title="jajuk" rel="tag">jajuk</a>, <a href="http://www.ghacks.net/tag/linux-software/" title="linux software" rel="tag">linux software</a>, <a href="http://www.ghacks.net/tag/mac-software/" title="mac software" rel="tag">mac software</a>, <a href="http://www.ghacks.net/tag/media-monkey/" title="media monkey" rel="tag">media monkey</a>, <a href="http://www.ghacks.net/tag/music-management/" title="music management" rel="tag">music management</a>, <a href="http://www.ghacks.net/tag/music-management-software/" title="music management software" rel="tag">music management software</a>, <a href="http://www.ghacks.net/tag/music-manager/" title="music manager" rel="tag">music manager</a>, <a href="http://www.ghacks.net/tag/open-source/" title="Open Source" rel="tag">Open Source</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/07/07/vlc-media-player-1-0-released/" title="VLC Media Player 1.0 Released (July 7, 2009)">VLC Media Player 1.0 Released</a> (9)</li>
	<li><a href="http://www.ghacks.net/2009/10/22/open-office-4-kids/" title="Open Office 4 Kids (October 22, 2009)">Open Office 4 Kids</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/05/05/open-office-31/" title="Open Office 3.1 (May 5, 2009)">Open Office 3.1</a> (17)</li>
	<li><a href="http://www.ghacks.net/2009/05/29/itunes-music-server-pulptunes/" title="iTunes Music Server pulpTunes (May 29, 2009)">iTunes Music Server pulpTunes</a> (7)</li>
	<li><a href="http://www.ghacks.net/2009/06/18/stream-music-with-subsonic/" title="Stream Music With Subsonic (June 18, 2009)">Stream Music With Subsonic</a> (11)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/05/20/music-management-software-jajuk/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Automatically Import Music Into iTunes</title>
		<link>http://www.ghacks.net/2009/05/11/automatically-import-music-into-itunes/</link>
		<comments>http://www.ghacks.net/2009/05/11/automatically-import-music-into-itunes/#comments</comments>
		<pubDate>Mon, 11 May 2009 20:14:35 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apple itunes]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[itunes music]]></category>
		<category><![CDATA[iTunes sync]]></category>
		<category><![CDATA[iwatchsync]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/05/11/automatically-import-music-into-itunes/</guid>
		<description><![CDATA[The same software developer who created the iTunes Playlist Exporter has created another useful third party tool for Apple&#8217;s iTunes media manager. The software is called iWatchSyncer and its main purpose is to monitor a folder on the local hard drive for new music to synchronize it with the iTunes software. The software has been [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/05/itunes.png" alt="itunes" title="itunes" width="110" height="87" class="alignleft size-full wp-image-12738" />The same software developer who created the <a href="http://www.ghacks.net/2009/05/11/itunes-playlist-exporter/">iTunes Playlist Exporter</a> has created another useful third party tool for Apple&#8217;s iTunes media manager. The software is called <a href="http://iwatchsyncer.codeplex.com/">iWatchSyncer</a> and its main purpose is to monitor a folder on the local hard drive for new music to synchronize it with the iTunes software. The software has been designed to be foolproof. All the user needs to do is to pick a folder on the computer system that should be monitored for new music files.</p>
<p><span id="more-12744"></span>The only other available option is to select a playlist to be created or extended with the music that is found in the monitored directory. This is an optional step though and not required for the music import to work properly. The software will check the folder for new music periodically and add it automatically to iTunes whenever new music is discovered in that folder on the drive. It looks like the interval is set to 1 minute as music that is moved to the folder gets quickly added to iTunes all the time.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/05/itunes_music_import-500x211.jpg" alt="itunes music import" title="itunes music import" width="500" height="211" class="alignnone size-medium wp-image-12743" /></p>
<p>The program has to be running in the background for this to work properly. It uses quite some computer memory (34 Megabytes on a Windows XP test system) which might make it to memory hungry for some computer systems. Could be worth a try for users who regularly add music to a specific folder and its subfolders on a computer system though. The music does get added to iTunes regularly as well.</p>

	Tags: <a href="http://www.ghacks.net/tag/apple-itunes/" title="apple itunes" rel="tag">apple itunes</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/itunes-music/" title="itunes music" rel="tag">itunes music</a>, <a href="http://www.ghacks.net/tag/itunes-sync/" title="iTunes sync" rel="tag">iTunes sync</a>, <a href="http://www.ghacks.net/tag/iwatchsync/" title="iwatchsync" rel="tag">iwatchsync</a>, <a href="http://www.ghacks.net/tag/music/" title="music" rel="tag">music</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/03/17/apple-itunes-songs-cleanup/" title="Apple iTunes Songs Cleanup (March 17, 2009)">Apple iTunes Songs Cleanup</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/03/05/apple-itunes-music-library-cleanup/" title="Apple iTunes Music Library Cleanup (March 5, 2009)">Apple iTunes Music Library Cleanup</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/02/12/take-keyboard-control-of-itunes-with-itunes-media-keys/" title="Take Keyboard Control Of iTunes With iTunes Media Keys (February 12, 2009)">Take Keyboard Control Of iTunes With iTunes Media Keys</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/05/29/itunes-music-server-pulptunes/" title="iTunes Music Server pulpTunes (May 29, 2009)">iTunes Music Server pulpTunes</a> (7)</li>
	<li><a href="http://www.ghacks.net/2009/04/04/install-itunes-without-quicktime-and-bonjour/" title="Install iTunes Without Quicktime And Bonjour (April 4, 2009)">Install iTunes Without Quicktime And Bonjour</a> (16)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/05/11/automatically-import-music-into-itunes/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>iTunes Playlist Exporter</title>
		<link>http://www.ghacks.net/2009/05/11/itunes-playlist-exporter/</link>
		<comments>http://www.ghacks.net/2009/05/11/itunes-playlist-exporter/#comments</comments>
		<pubDate>Mon, 11 May 2009 16:59:33 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[apple itunes]]></category>
		<category><![CDATA[iexporter]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[itunes playlist]]></category>
		<category><![CDATA[itunes playlist export]]></category>
		<category><![CDATA[playlist]]></category>
		<category><![CDATA[playlist export]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/05/11/itunes-playlist-exporter/</guid>
		<description><![CDATA[The popular music manager iTunes offers a great and easy way of creating playlists. It takes a few clicks to create and fill a playlist in the iTunes software. There is however no official way of exporting playlists from iTunes to the computer system. This might be interesting for users who want to transfer playlists [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/05/itunes.png" alt="itunes" title="itunes" width="110" height="87" class="alignleft size-full wp-image-12738" />The popular music manager iTunes offers a great and easy way of creating playlists. It takes a few clicks to create and fill a playlist in the iTunes software. There is however no official way of exporting playlists from iTunes to the computer system. This might be interesting for users who want to transfer playlists to other devices or systems that cannot be connected to the iTunes software, e.g. a mp3 player or cell phone from another manufacturer.</p>
<p><span id="more-12742"></span>Enter iExporter. The software program for the Windows operating system comes with the means to easily export playlists to the computer system. The only restriction of the program is that it currently only works with native mp3 files. </p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/05/itunes_playlists.jpg" alt="itunes playlists" title="itunes playlists" width="463" height="387" class="alignnone size-full wp-image-12741" /></p>
<p>The software has to be connected to iTunes upon start. This is done by clicking on the Connect to iTunes button. The software will be opened if it is not open already and the two tabs playlists and artists will be populated. The playlist tab contains all playlists that are currently available in iTunes. The artist tab on the other hand offers the possibility to export selected artists from iTunes. This did not work on the Windows XP SP3 test system though.</p>
<p><a href="http://iexporter.codeplex.com/">iExporter</a> is a great software for iTunes users that want to export some or all of their playlists to their computer system.</p>

	Tags: <a href="http://www.ghacks.net/tag/apple-itunes/" title="apple itunes" rel="tag">apple itunes</a>, <a href="http://www.ghacks.net/tag/iexporter/" title="iexporter" rel="tag">iexporter</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/itunes-playlist/" title="itunes playlist" rel="tag">itunes playlist</a>, <a href="http://www.ghacks.net/tag/itunes-playlist-export/" title="itunes playlist export" rel="tag">itunes playlist export</a>, <a href="http://www.ghacks.net/tag/playlist/" title="playlist" rel="tag">playlist</a>, <a href="http://www.ghacks.net/tag/playlist-export/" title="playlist export" rel="tag">playlist export</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/02/12/take-keyboard-control-of-itunes-with-itunes-media-keys/" title="Take Keyboard Control Of iTunes With iTunes Media Keys (February 12, 2009)">Take Keyboard Control Of iTunes With iTunes Media Keys</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/11/30/speed-up-itunes-downloads-with-autobahn/" title="Speed Up iTunes Downloads With Autobahn (November 30, 2008)">Speed Up iTunes Downloads With Autobahn</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/07/24/palm-defies-apple-itunes-working-again/" title="Palm Defies Apple &#8211; iTunes Working Again (July 24, 2009)">Palm Defies Apple &#8211; iTunes Working Again</a> (5)</li>
	<li><a href="http://www.ghacks.net/2007/12/06/itunes-folder-watch/" title="iTunes Folder Watch (December 6, 2007)">iTunes Folder Watch</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/02/24/itunes-control/" title="iTunes Control (February 24, 2008)">iTunes Control</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/05/11/itunes-playlist-exporter/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Install iTunes Without Quicktime And Bonjour</title>
		<link>http://www.ghacks.net/2009/04/04/install-itunes-without-quicktime-and-bonjour/</link>
		<comments>http://www.ghacks.net/2009/04/04/install-itunes-without-quicktime-and-bonjour/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 17:28:04 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[apple itunes]]></category>
		<category><![CDATA[bonjour]]></category>
		<category><![CDATA[install itunes]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[itunes custom install]]></category>
		<category><![CDATA[itunes installation]]></category>
		<category><![CDATA[ituneshelper]]></category>
		<category><![CDATA[mobileme]]></category>
		<category><![CDATA[quicktime]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/04/04/install-itunes-without-quicktime-and-bonjour/</guid>
		<description><![CDATA[Apple&#8217;s iTunes software will only install and run if additional Apple products are installed on the computer system as well. This includes Apple Quicktime and Bonjour. A user installing iTunes will notice that the installer will also install Quicktime and Bonjour on the host system with no obvious option to opt out of their installation.
There [...]]]></description>
			<content:encoded><![CDATA[<p>Apple&#8217;s iTunes software will only install and run if additional Apple products are installed on the computer system as well. This includes Apple Quicktime and Bonjour. A user installing iTunes will notice that the installer will also install Quicktime and Bonjour on the host system with no obvious option to opt out of their installation.</p>
<p>There is however a way to install iTunes without Apple Quicktime, Bonjour, MobileMe support and iTuneshelper process running at startup. This can be achieved with a custom installer that can be <a href="http://www.msfn.org/board/index.php?showtopic=122101">downloaded</a> from the Custom Installers page which contains installers for the English and multi-language versions of iTunes 8.0.2.20 and 8.1.0.52. The only requirement other than running the installer to install iTunes is an installation of <a href="http://www.codecguide.com/download_qt.htm">Quicktime Alternative</a> and the Quicktime Alternative iTunes <a href="http://fileforum.betanews.com/detail/QuickTime-Alternative-iTunes-Addon/1221063316/1">add-on</a> which makes the program compatible with iTunes 8.</p>
<p>The correct sequence for installing iTunes without Quicktime and Bonjour would be therefore to install Quicktime Alternative, then the Quicktime Alternative plugin and finally iTunes using the custom installer. The custom installer will skip the installation of aforementioned programs and services. This is great news for users who do not want to have those programs running in the background or those who prefer to run the Quicktime Alternative program instead of the original.</p>
<p><span id="more-11664"></span>The iTunes customer installer is only available for the Microsoft Windows operating system. It comes as a msi file that allows a silent installation with the switches /qb /norestart.</p>

	Tags: <a href="http://www.ghacks.net/tag/apple-itunes/" title="apple itunes" rel="tag">apple itunes</a>, <a href="http://www.ghacks.net/tag/bonjour/" title="bonjour" rel="tag">bonjour</a>, <a href="http://www.ghacks.net/tag/install-itunes/" title="install itunes" rel="tag">install itunes</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/itunes-custom-install/" title="itunes custom install" rel="tag">itunes custom install</a>, <a href="http://www.ghacks.net/tag/itunes-installation/" title="itunes installation" rel="tag">itunes installation</a>, <a href="http://www.ghacks.net/tag/ituneshelper/" title="ituneshelper" rel="tag">ituneshelper</a>, <a href="http://www.ghacks.net/tag/mobileme/" title="mobileme" rel="tag">mobileme</a>, <a href="http://www.ghacks.net/tag/quicktime/" title="quicktime" rel="tag">quicktime</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/09/10/install-itunes-without-unnecessary-software/" title="Install iTunes Without Unnecessary Software (September 10, 2009)">Install iTunes Without Unnecessary Software</a> (8)</li>
	<li><a href="http://www.ghacks.net/2009/02/12/take-keyboard-control-of-itunes-with-itunes-media-keys/" title="Take Keyboard Control Of iTunes With iTunes Media Keys (February 12, 2009)">Take Keyboard Control Of iTunes With iTunes Media Keys</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/10/24/fix-the-folder-itunes-cannot-be-found-or-created/" title="Fix The Folder iTunes Cannot Be Found Or Created (October 24, 2008)">Fix The Folder iTunes Cannot Be Found Or Created</a> (75)</li>
	<li><a href="http://www.ghacks.net/2009/05/11/automatically-import-music-into-itunes/" title="Automatically Import Music Into iTunes (May 11, 2009)">Automatically Import Music Into iTunes</a> (14)</li>
	<li><a href="http://www.ghacks.net/2009/03/17/apple-itunes-songs-cleanup/" title="Apple iTunes Songs Cleanup (March 17, 2009)">Apple iTunes Songs Cleanup</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/04/install-itunes-without-quicktime-and-bonjour/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Apple iTunes Songs Cleanup</title>
		<link>http://www.ghacks.net/2009/03/17/apple-itunes-songs-cleanup/</link>
		<comments>http://www.ghacks.net/2009/03/17/apple-itunes-songs-cleanup/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 17:09:11 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[apple itunes]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[itunes cleanup]]></category>
		<category><![CDATA[itunes libraries]]></category>
		<category><![CDATA[itunes songs]]></category>
		<category><![CDATA[itunes tips]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/03/17/apple-itunes-songs-cleanup/</guid>
		<description><![CDATA[Apple iTunes is one of the most popular media managers which can largely be attributed to the success of the iPod and iPhone product line. We have covered iTunes in the past, explained for example how to Create A Free US iTunes Account or mentioned the program iTunes music library cleanup for it. Songs Cleanup [...]]]></description>
			<content:encoded><![CDATA[<p>Apple iTunes is one of the most popular media managers which can largely be attributed to the success of the iPod and iPhone product line. We have covered iTunes in the past, explained for example how to <a href="http://www.ghacks.net/2008/10/25/create-a-free-us-itunes-account">Create A Free US iTunes Account</a> or mentioned the program <a href="http://www.ghacks.net/2009/03/05/apple-itunes-music-library-cleanup/">iTunes music library cleanup</a> for it. Songs Cleanup is another free software program to cleanup the song tags of iTunes libraries.</p>
<p>It does require an installation of Apple&#8217;s iTunes software to work which is the only requirement. The main interface is divided into a library selector that provides access to all playlists that are currently configured in the installed iTunes version on the computer system. A click on the Clean button will initiate the scan of the songs that are listed in the library. </p>
<p>Users who want more control can access several configuration settings before which define the value that null fields will be replaced with and which also allow the selection and deselection of several cleaning filters.</p>
<p><span id="more-11300"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/03/itunes_songs_cleanup-500x251.jpg" alt="itunes songs cleanup" title="itunes songs cleanup" width="500" height="251" class="alignnone size-medium wp-image-11299" /></p>
<p>The application is definitely a work in progress and could need some additional information to guide the user and explain what it is doing. The homepage of the software developer lists several of the features and plans for future versions. The download on that page is currently broken but will hopefully be fixed by the developer soon. Here is the direct link to the page containing the download.</p>

	Tags: <a href="http://www.ghacks.net/tag/apple/" title="apple" rel="tag">apple</a>, <a href="http://www.ghacks.net/tag/apple-itunes/" title="apple itunes" rel="tag">apple itunes</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/itunes-cleanup/" title="itunes cleanup" rel="tag">itunes cleanup</a>, <a href="http://www.ghacks.net/tag/itunes-libraries/" title="itunes libraries" rel="tag">itunes libraries</a>, <a href="http://www.ghacks.net/tag/itunes-songs/" title="itunes songs" rel="tag">itunes songs</a>, <a href="http://www.ghacks.net/tag/itunes-tips/" title="itunes tips" rel="tag">itunes tips</a>, <a href="http://www.ghacks.net/tag/music/" title="music" rel="tag">music</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/02/16/how-to-use-multiple-itunes-libraries/" title="How To Use Multiple iTunes Libraries (February 16, 2009)">How To Use Multiple iTunes Libraries</a> (8)</li>
	<li><a href="http://www.ghacks.net/2009/05/11/automatically-import-music-into-itunes/" title="Automatically Import Music Into iTunes (May 11, 2009)">Automatically Import Music Into iTunes</a> (14)</li>
	<li><a href="http://www.ghacks.net/2008/07/16/winamp-ipod-plugin-2/" title="Winamp iPod Plugin (July 16, 2008)">Winamp iPod Plugin</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/02/12/take-keyboard-control-of-itunes-with-itunes-media-keys/" title="Take Keyboard Control Of iTunes With iTunes Media Keys (February 12, 2009)">Take Keyboard Control Of iTunes With iTunes Media Keys</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/03/20/share-songs-with-mojo-and-itunes/" title="Share Songs with Mojo and iTunes (March 20, 2008)">Share Songs with Mojo and iTunes</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/03/17/apple-itunes-songs-cleanup/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>iWow makes your music sound &#8216;wow&#8217;</title>
		<link>http://www.ghacks.net/2009/03/10/iwow-makes-your-music-sound-wow/</link>
		<comments>http://www.ghacks.net/2009/03/10/iwow-makes-your-music-sound-wow/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 20:09:19 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[equalizer]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[iWOW]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[SRS Labs]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=11086</guid>
		<description><![CDATA[iWOW is perhaps my favourite iTunes plug-in. It makes your sound, whether videos, podcasts or music, feel much more vibrant. To dramatically improve sound, the user must simply choose their form of speakers (surround, laptop speakers, headphones etc), the type of sound and if music its genre. This takes no audophile, but advanced options do [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.srslabs.com/store/index.asp">iWOW</a> is perhaps my favourite iTunes plug-in. It makes your sound, whether videos, podcasts or music, feel much more vibrant. To dramatically improve sound, the user must simply choose their form of speakers (surround, laptop speakers, headphones etc), the type of sound and if music its genre. This takes no audophile, but advanced options do exist.</p>
<p>iWOW exists for Windows, OS X and iPods. On OS X, only an iTunes plug-in is available. On Windows, either an iTunes plug-in or system-wide software are available. The system-wide software can obviously be used to improve sound in all applications, such as games. On an iPod, a hardware-based adapter is available which plugs into the iPod to improve its sound. I haven&#8217;t tested the iTunes version.</p>
<p>The software or iPod adapter are unfortunately not free. The iTunes plug-in costs $40, the system-wide software costs $50 and the adapter costs $80. This sounds expensive but it sometimes included in bundles and discounts, MacUpdate for example offered it in their bundle.</p>
<p><span id="more-11086"></span>SRS Labs, the makers of iWOW, claims to create &#8216;an expansive sound stage&#8217; and to &#8216;restore audio cues that are buried in the original source material&#8217;. I personally don&#8217;t understand what that means, but have heard the sound quality it produces&#8230; even on my laptop speakers!</p>
<p>The software, at least on the Mac, is very easy to install. All one must do is run it. It is then installed in iTunes.</p>
<p>The question is whether or not it is worth $40. 51 reviews on MacUpdate give it 4/5 on average.</p>
<p>A few features like &#8216;auto-detect&#8217; are missing in version 3, but were present in version 2. <a href="http://www.macupdate.com/users/@MichaelBingham">SRS Labs promise that this will be offered in an update in a few weeks.</a></p>

	Tags: <a href="http://www.ghacks.net/tag/equalizer/" title="equalizer" rel="tag">equalizer</a>, <a href="http://www.ghacks.net/tag/ipod/" title="iPod" rel="tag">iPod</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/iwow/" title="iWOW" rel="tag">iWOW</a>, <a href="http://www.ghacks.net/tag/mp3/" title="mp3" rel="tag">mp3</a>, <a href="http://www.ghacks.net/tag/music/" title="music" rel="tag">music</a>, <a href="http://www.ghacks.net/tag/sound/" title="sound" rel="tag">sound</a>, <a href="http://www.ghacks.net/tag/srs-labs/" title="SRS Labs" rel="tag">SRS Labs</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/11/26/copy-songs-from-and-to-your-ipod-without-itunes/" title="Copy songs from and to your ipod without itunes (November 26, 2006)">Copy songs from and to your ipod without itunes</a> (6)</li>
	<li><a href="http://www.ghacks.net/2008/07/16/winamp-ipod-plugin-2/" title="Winamp iPod Plugin (July 16, 2008)">Winamp iPod Plugin</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/04/24/sync-any-mp3-player-with-itunes/" title="Sync any mp3 player with iTunes (April 24, 2008)">Sync any mp3 player with iTunes</a> (2)</li>
	<li><a href="http://www.ghacks.net/2007/01/13/odeo-offers-an-impressive-list-of-podcasts/" title="Odeo offers an impressive list of podcasts (January 13, 2007)">Odeo offers an impressive list of podcasts</a> (1)</li>
	<li><a href="http://www.ghacks.net/2006/12/07/how-to-remove-the-drm-from-itunes-music/" title="How to remove the DRM from iTunes music (December 7, 2006)">How to remove the DRM from iTunes music</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/03/10/iwow-makes-your-music-sound-wow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple iTunes Music Library Cleanup</title>
		<link>http://www.ghacks.net/2009/03/05/apple-itunes-music-library-cleanup/</link>
		<comments>http://www.ghacks.net/2009/03/05/apple-itunes-music-library-cleanup/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 17:25:45 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[apple itunes]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[itunes library]]></category>
		<category><![CDATA[itunes library scripts]]></category>
		<category><![CDATA[itunes music]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[music library cleanup]]></category>
		<category><![CDATA[portable software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=10952</guid>
		<description><![CDATA[If you are a heavy Apple iTunes user your iTunes music library might contain music that is not longer on the computer system or duplicate music. Teridon&#8217;s iTunes Scripts are a collection of scripts for Apple iTunes that can perform various tasks like scanning the iTunes music library for duplicate music or removing music that [...]]]></description>
			<content:encoded><![CDATA[<p>If you are a heavy Apple iTunes user your iTunes music library might contain music that is not longer on the computer system or duplicate music. Teridon&#8217;s iTunes Scripts are a collection of scripts for Apple iTunes that can perform various tasks like scanning the iTunes music library for duplicate music or removing music that is no longer on the computer system. The script collection is completely portable and can be executed right after downloading and unpacking.</p>
<p>A total of 19 different scripts are available that can be executed from the interface. The scripts usually spawn a dos window that will execute the selected script. A selection of the script itunes_not_found will for example scan the iTunes music library for music that is no longer available on the local hard drive. Other cleanup scripts include the search for duplicate music in iTunes. Some scripts require user input like removing songs based on a playlist or location. The script collection will usually list the available options and wait for keyboard input to continue executing the script.</p>
<p><a href="http://mysite.verizon.net/teridon/itunesscripts/index.html">Teridon&#8217;s iTunes Scripts</a> provide a great way of cleaning up the music collection in Apple iTunes. The script collection does contain several additional scripts that might be worth a try. One interesting script is for example the one that will create a playlist containing all songs of a connected iPod.</p>
<p><span id="more-10952"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/03/apple_itunes_music_cleanup-500x426.jpg" alt="apple itunes music cleanup" title="apple itunes music cleanup" width="500" height="426" class="alignnone size-medium wp-image-10954" /></p>
<p>The scripts are also available as Perl scripts for users who do not like to download the executables. They have been tested both with iTunes 6 and 7 but most should work fine if iTunes 8 is installed on the computer system as well.</p>

	Tags: <a href="http://www.ghacks.net/tag/apple-itunes/" title="apple itunes" rel="tag">apple itunes</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/itunes-library/" title="itunes library" rel="tag">itunes library</a>, <a href="http://www.ghacks.net/tag/itunes-library-scripts/" title="itunes library scripts" rel="tag">itunes library scripts</a>, <a href="http://www.ghacks.net/tag/itunes-music/" title="itunes music" rel="tag">itunes music</a>, <a href="http://www.ghacks.net/tag/music/" title="music" rel="tag">music</a>, <a href="http://www.ghacks.net/tag/music-library-cleanup/" title="music library cleanup" rel="tag">music library cleanup</a>, <a href="http://www.ghacks.net/tag/portable-software/" title="portable software" rel="tag">portable software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/05/11/automatically-import-music-into-itunes/" title="Automatically Import Music Into iTunes (May 11, 2009)">Automatically Import Music Into iTunes</a> (14)</li>
	<li><a href="http://www.ghacks.net/2009/02/16/how-to-use-multiple-itunes-libraries/" title="How To Use Multiple iTunes Libraries (February 16, 2009)">How To Use Multiple iTunes Libraries</a> (8)</li>
	<li><a href="http://www.ghacks.net/2008/04/29/giggle-music-and-event-recommendations/" title="Giggle Music and Event Recommendations (April 29, 2008)">Giggle Music and Event Recommendations</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/03/17/apple-itunes-songs-cleanup/" title="Apple iTunes Songs Cleanup (March 17, 2009)">Apple iTunes Songs Cleanup</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/07/16/winamp-ipod-plugin-2/" title="Winamp iPod Plugin (July 16, 2008)">Winamp iPod Plugin</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/03/05/apple-itunes-music-library-cleanup/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How To Anonymize iTunes Songs</title>
		<link>http://www.ghacks.net/2009/02/25/how-to-anonymize-itunes-songs/</link>
		<comments>http://www.ghacks.net/2009/02/25/how-to-anonymize-itunes-songs/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 14:30:28 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[anonymize itunes songs]]></category>
		<category><![CDATA[apple itunes]]></category>
		<category><![CDATA[atom remove]]></category>
		<category><![CDATA[atomicparsley]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[itunes anonymity]]></category>
		<category><![CDATA[itunes privacy]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[privatunes]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=10760</guid>
		<description><![CDATA[One of our readers pointed out that the application that we reviewed a while back to anonymize iTunes songs had been down for a while. He suggested another method of getting rid of user identifying data in iTunes. The iTunes plus songs contain three obvious fields that can be used to identify the user. The [...]]]></description>
			<content:encoded><![CDATA[<p>One of our readers pointed out that the application that we reviewed a while back to anonymize iTunes songs had been down for a while. He suggested another method of getting rid of user identifying data in iTunes. The iTunes plus songs contain three obvious fields that can be used to identify the user. The <a href="http://www.eff.org/deeplinks/2007/06/privatunes-0-9-does-not-anonymize-itunes-plus-files">EFF</a> is suspecting that each song might contain even more fields that can be used to identify the user. </p>
<p>The actual process of anonymizing itunes songs involves the usage of two different programs: <a href="http://atomicparsley.sourceforge.net/">Atomic Parsley</a> and <a href="http://ridiculousfish.com/hexfiend/">Hexfiend</a>. Atomic Parsley will be used to remove the application ID which is usually the email address of the user who purchased the song and the purchase data. The software is available for Windows, Linux and Mac.</p>
<p>A basic command that can be very helpful is to display all information about a song using the software. To do this run the following command:</p>
<p><code>atomicparsley song.m4u -t</code></p>
<p><span id="more-10760"></span>This will list all tags and their values in the same command window making it easy to spot the identifying ones.</p>
<p>Tags can be removed with the command</p>
<p><code>atomicparsley song.m4a –manualAtomRemove “moov.udta.meta.ilst.TAG”</code></p>
<p>where TAG has to be replaced with a valid name. To remove both the application ID and purchase data from an iTunes song one would issue the following command:</p>
<p><code>atomicparsley song.m4a –-manualAtomRemove “moov.udta.meta.ilst.apID” –-manualAtomRemove “moov.udta.meta.ilst.purd” -W</code></p>
<p>An alternative would be to remove all tag information at once using the following command which is currently the only way to ensure that the song will not contain user identifying information afterwards. It will however clear all tags including title, artist and other related tags.</p>
<p><code>AtomicParsley song.m4a –metaEnema</code></p>
<p>After finishing the first step of anonymizing iTunes songs we still have to remove the name of the buyer that is contained in the songs. To do that a hexeditor like Hexfiend is needed. Simply open the iTunes song in Hexfiend and search for the name. Once the name is found replace it with other chars that match the exact length of the name. Save the file under a different file name and check out that it still plays fine in your favorite music player.</p>

	Tags: <a href="http://www.ghacks.net/tag/anonymize-itunes-songs/" title="anonymize itunes songs" rel="tag">anonymize itunes songs</a>, <a href="http://www.ghacks.net/tag/apple-itunes/" title="apple itunes" rel="tag">apple itunes</a>, <a href="http://www.ghacks.net/tag/atom-remove/" title="atom remove" rel="tag">atom remove</a>, <a href="http://www.ghacks.net/tag/atomicparsley/" title="atomicparsley" rel="tag">atomicparsley</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/itunes-anonymity/" title="itunes anonymity" rel="tag">itunes anonymity</a>, <a href="http://www.ghacks.net/tag/itunes-privacy/" title="itunes privacy" rel="tag">itunes privacy</a>, <a href="http://www.ghacks.net/tag/privacy/" title="privacy" rel="tag">privacy</a>, <a href="http://www.ghacks.net/tag/privatunes/" title="privatunes" rel="tag">privatunes</a>, <a href="http://www.ghacks.net/tag/software/" title="software" rel="tag">software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/02/24/itunes-control/" title="iTunes Control (February 24, 2008)">iTunes Control</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/08/17/free-itunes-alternative-froddle-pod/" title="Free iTunes Alternative Froddle Pod (August 17, 2008)">Free iTunes Alternative Froddle Pod</a> (28)</li>
	<li><a href="http://www.ghacks.net/2008/06/08/thumbsdb-extractor/" title="Thumbs.db Extractor (June 8, 2008)">Thumbs.db Extractor</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/02/12/take-keyboard-control-of-itunes-with-itunes-media-keys/" title="Take Keyboard Control Of iTunes With iTunes Media Keys (February 12, 2009)">Take Keyboard Control Of iTunes With iTunes Media Keys</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/11/30/speed-up-itunes-downloads-with-autobahn/" title="Speed Up iTunes Downloads With Autobahn (November 30, 2008)">Speed Up iTunes Downloads With Autobahn</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/02/25/how-to-anonymize-itunes-songs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Use Multiple iTunes Libraries</title>
		<link>http://www.ghacks.net/2009/02/16/how-to-use-multiple-itunes-libraries/</link>
		<comments>http://www.ghacks.net/2009/02/16/how-to-use-multiple-itunes-libraries/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 12:43:33 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[apple itunes]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[itunes libraries]]></category>
		<category><![CDATA[itunes library]]></category>
		<category><![CDATA[itunes tips]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=10582</guid>
		<description><![CDATA[Not many iTunes users know that it is possible to use multiple iTunes libraries on the same computer system. There is virtually no information about running multiple iTunes libraries once iTunes has been started. Before we explain how to setup multiple iTunes libraries we should analyze why someone would want to work with several iTunes [...]]]></description>
			<content:encoded><![CDATA[<p>Not many iTunes users know that it is possible to use multiple iTunes libraries on the same computer system. There is virtually no information about running multiple iTunes libraries once iTunes has been started. Before we explain how to setup multiple iTunes libraries we should analyze why someone would want to work with several iTunes libraries instead of just one.</p>
<p>The main reason to use multiple iTunes libraries would be to divide specific data into different libraries. This can be dividing losless and lossy music, libraries for specific occasions, specific music genres or types like bootlegs or live music only.</p>
<p>It is actually very easy to create a second iTunes library. All that needs to be done is to press the Shift key (Alt on Macs) before launching iTunes. A small popup window will be displayed asking the user to choose or create a library.</p>
<p><span id="more-10582"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/02/itunes_library.jpg" alt="itunes library" title="itunes library" width="426" height="136" class="alignnone size-full wp-image-10583" /></p>
<p>Selecting the create a library option will create a new iTunes library that acts independently of all other iTunes libraries. It should also be noted that iTunes will always open the library that has been used the last time iTunes was executed. Switching libraries would again require pressing the Shift key during launch.</p>

	Tags: <a href="http://www.ghacks.net/tag/apple-itunes/" title="apple itunes" rel="tag">apple itunes</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/itunes-libraries/" title="itunes libraries" rel="tag">itunes libraries</a>, <a href="http://www.ghacks.net/tag/itunes-library/" title="itunes library" rel="tag">itunes library</a>, <a href="http://www.ghacks.net/tag/itunes-tips/" title="itunes tips" rel="tag">itunes tips</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/03/17/apple-itunes-songs-cleanup/" title="Apple iTunes Songs Cleanup (March 17, 2009)">Apple iTunes Songs Cleanup</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/02/09/create-a-free-us-itunes-account-from-any-country/" title="Create A Free US iTunes Account From Any Country (February 9, 2009)">Create A Free US iTunes Account From Any Country</a> (51)</li>
	<li><a href="http://www.ghacks.net/2009/03/05/apple-itunes-music-library-cleanup/" title="Apple iTunes Music Library Cleanup (March 5, 2009)">Apple iTunes Music Library Cleanup</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/02/12/take-keyboard-control-of-itunes-with-itunes-media-keys/" title="Take Keyboard Control Of iTunes With iTunes Media Keys (February 12, 2009)">Take Keyboard Control Of iTunes With iTunes Media Keys</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/11/30/speed-up-itunes-downloads-with-autobahn/" title="Speed Up iTunes Downloads With Autobahn (November 30, 2008)">Speed Up iTunes Downloads With Autobahn</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/02/16/how-to-use-multiple-itunes-libraries/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Take Keyboard Control Of iTunes With iTunes Media Keys</title>
		<link>http://www.ghacks.net/2009/02/12/take-keyboard-control-of-itunes-with-itunes-media-keys/</link>
		<comments>http://www.ghacks.net/2009/02/12/take-keyboard-control-of-itunes-with-itunes-media-keys/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 23:31:59 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[apple itunes]]></category>
		<category><![CDATA[control itunes]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[itunes hotkeys]]></category>
		<category><![CDATA[iTunes media keys]]></category>
		<category><![CDATA[itunes shortcuts]]></category>
		<category><![CDATA[itunes software]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=10483</guid>
		<description><![CDATA[We covered iTunes Media Keys about two month ago. The software made it possible to control iTunes with some keyboard shortcuts even if iTunes was minimized. The verdict back then was that it did work quite well but missed customization and options. The software developer did promise a new version and released a new version [...]]]></description>
			<content:encoded><![CDATA[<p>We covered iTunes Media Keys about two month ago. The software made it possible to <a href="http://www.ghacks.net/2008/11/25/control-itunes-playback-with-shortcuts/">control iTunes</a> with some keyboard shortcuts even if iTunes was minimized. The verdict back then was that it did work quite well but missed customization and options. The software developer did promise a new version and released a new version of the software yesterday.</p>
<p>Version 1.2 of iTunes Media Keys adds the option to select the hotkeys to perform the various actions. Several new actions have been added which can be used to rate songs, forward or rewind them. </p>
<p>The software will add the shortcuts as system wide shortcuts. All that needs to be done to use the software is run it in the background.</p>
<p><span id="more-10483"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/02/itunes_media_keys.jpg" alt="itunes media keys" title="itunes media keys" width="310" height="323" class="alignnone size-full wp-image-10484" /></p>
<p>The software itself uses less than 1 Megabytes of computer memory while running but about 12 Megabytes of virtual memory, still acceptable for heavy iTunes users. The software requires an installation of the Microsoft .net Framework 3.5. Should run fine on most Microsoft operating systems.</p>

	Tags: <a href="http://www.ghacks.net/tag/apple-itunes/" title="apple itunes" rel="tag">apple itunes</a>, <a href="http://www.ghacks.net/tag/control-itunes/" title="control itunes" rel="tag">control itunes</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/itunes-hotkeys/" title="itunes hotkeys" rel="tag">itunes hotkeys</a>, <a href="http://www.ghacks.net/tag/itunes-media-keys/" title="iTunes media keys" rel="tag">iTunes media keys</a>, <a href="http://www.ghacks.net/tag/itunes-shortcuts/" title="itunes shortcuts" rel="tag">itunes shortcuts</a>, <a href="http://www.ghacks.net/tag/itunes-software/" title="itunes software" rel="tag">itunes software</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/11/25/control-itunes-playback-with-shortcuts/" title="Control iTunes Playback With Shortcuts (November 25, 2008)">Control iTunes Playback With Shortcuts</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/04/04/install-itunes-without-quicktime-and-bonjour/" title="Install iTunes Without Quicktime And Bonjour (April 4, 2009)">Install iTunes Without Quicktime And Bonjour</a> (16)</li>
	<li><a href="http://www.ghacks.net/2009/05/11/automatically-import-music-into-itunes/" title="Automatically Import Music Into iTunes (May 11, 2009)">Automatically Import Music Into iTunes</a> (14)</li>
	<li><a href="http://www.ghacks.net/2009/03/17/apple-itunes-songs-cleanup/" title="Apple iTunes Songs Cleanup (March 17, 2009)">Apple iTunes Songs Cleanup</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/11/30/speed-up-itunes-downloads-with-autobahn/" title="Speed Up iTunes Downloads With Autobahn (November 30, 2008)">Speed Up iTunes Downloads With Autobahn</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/02/12/take-keyboard-control-of-itunes-with-itunes-media-keys/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Create A Free US iTunes Account From Any Country</title>
		<link>http://www.ghacks.net/2009/02/09/create-a-free-us-itunes-account-from-any-country/</link>
		<comments>http://www.ghacks.net/2009/02/09/create-a-free-us-itunes-account-from-any-country/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 16:37:58 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[The Web]]></category>
		<category><![CDATA[apple itunes]]></category>
		<category><![CDATA[create itunes account]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[itunes account]]></category>
		<category><![CDATA[itunes store]]></category>
		<category><![CDATA[itunes store account]]></category>
		<category><![CDATA[itunes tips]]></category>
		<category><![CDATA[itunes us]]></category>
		<category><![CDATA[itunes us account]]></category>
		<category><![CDATA[us account]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/02/09/create-a-free-us-itunes-account-from-any-country/</guid>
		<description><![CDATA[If you have a US iTunes account you can get all sorts of freebies like new songs or media that is only being made available for US users. We previously mentioned how to get a free US iTunes account but Apple soon after disabled that option. You see, if you want to create a new [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a US iTunes account you can get all sorts of freebies like new songs or media that is only being made available for US users. We previously mentioned how to get a <a href="www.ghacks.net/2008/10/25/create-a-free-us-itunes-account/">free US iTunes account</a> but Apple soon after disabled that option. You see, if you want to create a new iTunes account you usually have to add one of your credit cards to that account. The problem for non-US iTunes users is that the billing address of the credit card has to be located in the country that you are claiming to be a user of. Most non-US users do not have a credit card that has a billing address in the United States of America which essentially means that they cannot sign up as a US user.</p>
<p>There is however a very easy and straightforward way to create a US iTunes account without having to add a credit card or any other means of payment during the account creation phase. The famous None option will be selectable during account creation. Start by visiting the iTunes store. Make sure you are in the United States store. If you are not scroll down to the bottom and change the store to United States. Access the App Store that contains applications for the iPhone. Select a free one from the list of Top Free Apps and click on the Get App link in the detail view. The next window is the login window with the option to create a new account.</p>
<p><span id="more-10430"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/02/itunes_account.jpg" alt="itunes account" title="itunes account" width="492" height="330" class="alignnone size-full wp-image-10427" /></p>
<p>Click on the Create New Account button and on Continue in the next window. Accept the license agreement and click continue once more.</p>
<p>Now fill out basic account details, like the email, username and password of that account and click on Continue again.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/02/itunes_store_account-500x417.jpg" alt="itunes store account" title="itunes store account" width="500" height="417" class="alignnone size-medium wp-image-10429" /></p>
<p>After that the screen with the payment information and address will appear. Select None as the payment and fill out the address information using a address in the United States. The easiest way to do that is to search in Google for hotels, e.g. Miami hotels, New York hotels and use the address of the hotel as the address.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/02/itunes_free_us_account-469x500.jpg" alt="itunes free us account" title="itunes free us account" width="469" height="500" class="alignnone size-medium wp-image-10428" /></p>
<p>Verify the email in the last step and you are set to use the US iTunes account. Here is a quick recap:</p>
<ul>
<li>Open the United States iTunes store</li>
<li>Download a free iPhone application</li>
<li>Select to create a new account</li>
<li>Enter username, password and email</li>
<li>Select none option and add a US address with matching zip, town and street.</li>
<li>Verify the email</li>
</ul>
<p>This should work from any country. If you got problems or tips let us know in the comments.</p>

	Tags: <a href="http://www.ghacks.net/tag/apple-itunes/" title="apple itunes" rel="tag">apple itunes</a>, <a href="http://www.ghacks.net/tag/create-itunes-account/" title="create itunes account" rel="tag">create itunes account</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/itunes-account/" title="itunes account" rel="tag">itunes account</a>, <a href="http://www.ghacks.net/tag/itunes-store/" title="itunes store" rel="tag">itunes store</a>, <a href="http://www.ghacks.net/tag/itunes-store-account/" title="itunes store account" rel="tag">itunes store account</a>, <a href="http://www.ghacks.net/tag/itunes-tips/" title="itunes tips" rel="tag">itunes tips</a>, <a href="http://www.ghacks.net/tag/itunes-us/" title="itunes us" rel="tag">itunes us</a>, <a href="http://www.ghacks.net/tag/itunes-us-account/" title="itunes us account" rel="tag">itunes us account</a>, <a href="http://www.ghacks.net/tag/us-account/" title="us account" rel="tag">us account</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/02/16/how-to-use-multiple-itunes-libraries/" title="How To Use Multiple iTunes Libraries (February 16, 2009)">How To Use Multiple iTunes Libraries</a> (8)</li>
	<li><a href="http://www.ghacks.net/2008/10/25/create-a-free-us-itunes-account/" title="Create A Free US iTunes Account (October 25, 2008)">Create A Free US iTunes Account</a> (132)</li>
	<li><a href="http://www.ghacks.net/2009/03/17/apple-itunes-songs-cleanup/" title="Apple iTunes Songs Cleanup (March 17, 2009)">Apple iTunes Songs Cleanup</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/02/12/take-keyboard-control-of-itunes-with-itunes-media-keys/" title="Take Keyboard Control Of iTunes With iTunes Media Keys (February 12, 2009)">Take Keyboard Control Of iTunes With iTunes Media Keys</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/11/30/speed-up-itunes-downloads-with-autobahn/" title="Speed Up iTunes Downloads With Autobahn (November 30, 2008)">Speed Up iTunes Downloads With Autobahn</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/02/09/create-a-free-us-itunes-account-from-any-country/feed/</wfw:commentRss>
		<slash:comments>51</slash:comments>
		</item>
		<item>
		<title>iTunes giving away free media</title>
		<link>http://www.ghacks.net/2008/12/27/itunes-giving-away-free-media/</link>
		<comments>http://www.ghacks.net/2008/12/27/itunes-giving-away-free-media/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 15:17:23 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[christmas]]></category>
		<category><![CDATA[free media]]></category>
		<category><![CDATA[free tv shows]]></category>
		<category><![CDATA[free-music]]></category>
		<category><![CDATA[itunes]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=9390</guid>
		<description><![CDATA[Instead of giving away free software on Christmas Day, Apple are giving away free media on iTunes in the UK and possibly other European countries.
Apple&#8217;s 12 Days of Christmas&#8217; Giveaway provides one free download every day between 26 Dec and 6 Jan. Yesterday, Apple were offering a music video of &#8216;That&#8217;s Not My Name&#8217; by [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://givingtree.macheist.com/">Instead of giving away free software on Christmas Day</a>, Apple are giving away free media on iTunes in the UK and possibly other European countries.</p>
<p>Apple&#8217;s <a href="http://www.itunes12daysofchristmas.co.uk/">12 Days of Christmas&#8217; Giveaway</a> provides one free download every day between 26 Dec and 6 Jan. Yesterday, Apple were offering a music video of &#8216;That&#8217;s Not My Name&#8217; by &#8216;The Tings Tings&#8217; (number 1 back in May) and today, a free episode of &#8216;Derren Brown&#8217;s Mind Control&#8217;.</p>
<p>iTunes users in the UK <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/outboundRedirect?omni-ch=Outbound+Brick&amp;omni-pg=http%3A%2F%2Fwww.itunes12daysofchristmas.co.uk%2F&amp;url=http%3A%2F%2Fwww.itunes12daysofchristmas.co.uk%2F">need only click this link</a> to access the giveaway!</p>
<p>Rumours exist that Apple are planning this giveaway in France, but I am unable to confirm whether it is there. <a href="http://blog.wired.com/business/2008/12/itunes-offers-1.html">Unfortunately for Americans, Apple has confirmed it won&#8217;t be happening outside of Europe!</a></p>
<p><span id="more-9390"></span>Another unfortunate thing about this giveaway is that iTunes is needed to download them; making it impossible for Linux users to access.</p>
<p>The giveaway is worth checking out as you may find a TV show, movie or song you like for free!</p>

	Tags: <a href="http://www.ghacks.net/tag/apple/" title="apple" rel="tag">apple</a>, <a href="http://www.ghacks.net/tag/christmas/" title="christmas" rel="tag">christmas</a>, <a href="http://www.ghacks.net/tag/free-media/" title="free media" rel="tag">free media</a>, <a href="http://www.ghacks.net/tag/free-tv-shows/" title="free tv shows" rel="tag">free tv shows</a>, <a href="http://www.ghacks.net/tag/free-music/" title="free-music" rel="tag">free-music</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/07/16/winamp-ipod-plugin-2/" title="Winamp iPod Plugin (July 16, 2008)">Winamp iPod Plugin</a> (5)</li>
	<li><a href="http://www.ghacks.net/2007/06/16/sync-itunes-with-non-ipod-mp3-players/" title="Sync iTunes with non iPod mp3 players (June 16, 2007)">Sync iTunes with non iPod mp3 players</a> (11)</li>
	<li><a href="http://www.ghacks.net/2008/04/24/sync-any-mp3-player-with-itunes/" title="Sync any mp3 player with iTunes (April 24, 2008)">Sync any mp3 player with iTunes</a> (2)</li>
	<li><a href="http://www.ghacks.net/2007/01/26/share-the-itunes-library-on-a-network/" title="Share the iTunes Library on a network (January 26, 2007)">Share the iTunes Library on a network</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/03/20/share-songs-with-mojo-and-itunes/" title="Share Songs with Mojo and iTunes (March 20, 2008)">Share Songs with Mojo and iTunes</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/12/27/itunes-giving-away-free-media/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Connect your iPod to gtkpod</title>
		<link>http://www.ghacks.net/2008/12/26/connect-ipod-to-gtkpod/</link>
		<comments>http://www.ghacks.net/2008/12/26/connect-ipod-to-gtkpod/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 19:13:11 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[gtkpod]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[mount]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=9374</guid>
		<description><![CDATA[You&#8217;re new to Linux. You have managed to figure your way around the desktop and you have become accustomed to the application installation process. Now it&#8217;s time to go about day to day business of using your newfound obsession. Of course one of the first issues you might come across is that of application abundance. [...]]]></description>
			<content:encoded><![CDATA[<p>You&#8217;re new to Linux. You have managed to figure your way around the desktop and you have become accustomed to the application installation process. Now it&#8217;s time to go about day to day business of using your newfound obsession. Of course one of the first issues you might come across is that of application abundance. With Linux there are sometimes countless applications that can handle the same process. Which one to do you use? If you are like many new users you will find an application that does what you need and then you will stop looking. But with Linux there is always something that might be a little better or suit your taste a bit more. One of those applications is gtkpod. Although gtkpod does not contain many of the advanced features of iTunes it is one of the more reliable iTunes-like applications for Linux.In this article I will show you how to connect your iPod to gtkpod.</p>
<p><span id="more-9374"></span><strong>First Steps</strong></p>
<p>The first thing you need to do is to plug in your iPod and mount the device. Before you actually plug in the device there are a few tasks to take care of. The first of these tasks is to create a directory where the iPod will be mounted. As the root user issue the command <em>mkdir /media/mp3</em>. You can name this directory whatever you want. Once you have the directory created you can plug in your iPod. Now issue the command <em>dmesg</em> so we can find out where your iPod was detected. When dmesg has completed you will see output like:</p>
<p><em>sd 2:0:0:0: [sdb] 58605120 512-byte hardware sectors (30006 MB)<br />
sd 2:0:0:0: [sdb] Write Protect is off<br />
sd 2:0:0:0: [sdb] Mode Sense: 68 00 00 08<br />
sd 2:0:0:0: [sdb] Assuming drive cache: write through<br />
sd 2:0:0:0: [sdb] 58605120 512-byte hardware sectors (30006 MB)<br />
sd 2:0:0:0: [sdb] Write Protect is off<br />
sd 2:0:0:0: [sdb] Mode Sense: 68 00 00 08<br />
sd 2:0:0:0: [sdb] Assuming drive cache: write through<br />
sdb: sdb1 sdb2</em></p>
<p>As you can see my iPod was listed at <em>/dev/sdb</em>. So now we know what entry to add to <em>/etc/fstab</em>. As the root user again open up <em>/etc/fstab</em> and append the following line:</p>
<p><em>/dev/sdb2 /media/mp3 auto ro,noauto,user 0 0</em></p>
<p>NOTE: The above line will vary depending upon where your iPod was detected and what directory you created for mounting purposes.</p>
<p>With your fstab entry in place exit out of the root user and issue the command <em>mount /media/mp3</em> (Where <em>mp3</em> is the directory you created for mounting purposes).</p>
<p>If you issue the command <em>ls /media/mp3</em> you should now see the contents of your iPod. And with the iPod mounted gtkpod should automatically detecte the iPod.</p>
<p><strong>Fire it up!</strong></p>
<p>Now it&#8217;s time to open up gtkpod. This will most likely be in your Audio/Video or Multimedia menu subdirectory of the Main Menu. If you do not find it you will have to install it. Most distributions do not include gtkpod by default. If yo open up the Add/Remove Applications utility you can find it doing a search for &#8220;gtkpod&#8221;.</p>
<p>Once gtkpod is open, so long as your iPod is mounted, it should detect the device and load it.</p>
<div id="attachment_9379" class="wp-caption alignnone" style="width: 510px"><img src="http://www.ghacks.net/wp-content/uploads/2008/12/gtkpod-500x417.png" alt="gtkpod main window" title="gtkpod" width="500" height="417" class="size-medium wp-image-9379" /><p class="wp-caption-text">gtkpod main window</p></div>
<p>As you can see gtkpod is pretty much a no-frills means to sync your iPod in Linux. Using gtkpod is pretty straightforward: Click to add files or directories, click Save Changes (sync), click to Load your iPod. There is only one issue that you must know about. When you are done with your iPod you need to close gtkpod and then UNMOUNT your iPod! To unmount your iPod go back to the command line and issue the command <em>umount /media/mp3</em> Where <em>mp3</em> is the actual directory where you have mounted your device. If you do not unmount your device you risk losing your data.</p>
<p><strong>Final Thoughts</strong></p>
<p>Gtkpod is one of the most reliable iPod managing tools in Linux. Sure there are far better multi-media players (such as Banshee or Amarok), but their iPod support can be flakey at best. Give gtkpod a try. If you&#8217;re looking for a reliable way to sync your iPod in Linux, this might be it.</p>

	Tags: <a href="http://www.ghacks.net/tag/gtkpod/" title="gtkpod" rel="tag">gtkpod</a>, <a href="http://www.ghacks.net/tag/ipod/" title="iPod" rel="tag">iPod</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/mount/" title="mount" rel="tag">mount</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/02/06/replace-itunes-with-floola/" title="Replace iTunes with Floola (February 6, 2007)">Replace iTunes with Floola</a> (12)</li>
	<li><a href="http://www.ghacks.net/2008/12/28/configuring-gtkpod-for-music-playback/" title="Configuring gtkpod for Music Playback (December 28, 2008)">Configuring gtkpod for Music Playback</a> (6)</li>
	<li><a href="http://www.ghacks.net/2008/07/16/winamp-ipod-plugin-2/" title="Winamp iPod Plugin (July 16, 2008)">Winamp iPod Plugin</a> (5)</li>
	<li><a href="http://www.ghacks.net/2007/06/16/sync-itunes-with-non-ipod-mp3-players/" title="Sync iTunes with non iPod mp3 players (June 16, 2007)">Sync iTunes with non iPod mp3 players</a> (11)</li>
	<li><a href="http://www.ghacks.net/2008/04/24/sync-any-mp3-player-with-itunes/" title="Sync any mp3 player with iTunes (April 24, 2008)">Sync any mp3 player with iTunes</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/12/26/connect-ipod-to-gtkpod/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
