Apple Ipod and C# - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T08:57:45Zhttp://stackoverflow.com/feeds/question/901319http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/901319/apple-ipod-and-c0Apple Ipod and C#jeanre2009-05-23T11:01:17Z2009-10-23T08:28:22Z
<p>Hi </p>
<p>What would be the best way to read ipod songs with C#. I am thinking of doing a interface to the ipod as a test :)</p>
<p>Thanks</p>
http://stackoverflow.com/questions/901319/apple-ipod-and-c/901358#9013580Answer by Patrik for Apple Ipod and C#Patrik2009-05-23T11:21:08Z2009-05-23T11:21:08Z<p>A quick google search gave me:</p>
<ul>
<li><a href="http://www.kbcafe.com/juice/?guid=20050507072047" rel="nofollow">http://www.kbcafe.com/juice/?guid=20050507072047</a></li>
<li><a href="http://projects.gnome.org/hipo/" rel="nofollow">http://projects.gnome.org/hipo/</a></li>
</ul>
http://stackoverflow.com/questions/901319/apple-ipod-and-c/901399#9013991Answer by Crippledsmurf for Apple Ipod and C#Crippledsmurf2009-05-23T11:50:59Z2009-05-23T11:50:59Z<p>The question is a little vauge so I shall answer based upon the ways I can see of interpretting it.</p>
<p>I can't speak about the current generation (Touch) devices because they have changed things but I do know that prior to this the songs were stored within the iPod_Control directory. These files are name-magled so in order to read information such as the track and artist name one must extreact it from the udata atom of the sound file itself.</p>
<p>iTunes and the iPod use MPEG-4 AAC audio for sound files so playing them involves extracting this data from the data atom of the sound file and passing it to an a capable renderer such as iTunes or QuckTime which are accessible from managed code via COM.</p>
<p>It is possible to render MP4-AAC without quicktime or itunes using 3rd party libraries and codecs but I have not explored this.</p>
<p>Apple recently stopped using DRM in the iTunes store however, if using third party audio libraries you might have problems rendering audio files which are encrypted in this manner</p>
http://stackoverflow.com/questions/901319/apple-ipod-and-c/902203#9022030Answer by adopilot for Apple Ipod and C#adopilot2009-05-23T18:55:16Z2009-05-23T18:55:16Z<p>Maybe I miss a theme but You can try <a href="http://www.getsharepod.com/" rel="nofollow">Here</a></p>
http://stackoverflow.com/questions/901319/apple-ipod-and-c/1612078#16120781Answer by Tao for Apple Ipod and C#Tao2009-10-23T08:28:22Z2009-10-23T08:28:22Z<p>This question came up in a google search, but the first reasonable answer I found took a while longer:</p>
<p><a href="http://www.getsharepod.com/" rel="nofollow">SharePod</a> has a .Net (2.0) library for iPod access, and apparently supports all the latest iPods and iPhones (I have not personally tested it):</p>
<p><a href="http://www.getsharepod.com/fordevelopers/" rel="nofollow">http://www.getsharepod.com/fordevelopers/</a></p>
<p>It's free for non-commercial use, and seems pretty cheap for licensed use ($99 at this time)</p>
<p>Hope this helps someone!</p>