active questions tagged ipod - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T03:18:27Z http://stackoverflow.com/feeds/tag/ipod http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1939302/testing-music-library-in-the-iphone-emulator 0 Testing Music Library in the iPhone emulator rui 2009-12-21T10:18:27Z 2009-12-21T10:32:27Z <p>I'd like to be able to debug my application in the iPhone emulator. The app uses the Media Library Framework so I'm not really sure whether I'm able to add songs to the emulator and actually try out the app there. Is this possible?</p> <p>Right now I'm just using the iPod directly for this...</p> <p>Thanks, rui</p> http://stackoverflow.com/questions/1922371/good-python-libraries-for-ipod-synchronization 2 Good Python Libraries for iPod Synchronization Nikwin 2009-12-17T15:09:29Z 2009-12-18T19:47:27Z <p>I am making a music application, and want to be able to synchronize with the iPod from my application. Has anyone had any experience in doing this with python, and if so what would you recommend?</p> http://stackoverflow.com/questions/1398885/how-to-count-songs-from-ipod-library-including-duplicates 0 How to count songs from ipod Library including Duplicates ppm7 2009-09-09T10:43:26Z 2009-12-18T19:30:00Z <p>I am trying to count the total songs from the ipod library. Due to grouping any songs with same title will not be added to the array.</p> <pre><code>MPMediaQuery *songsQuery = [[MPMediaQuery alloc] init]; NSArray *mySongs = [songsQuery collections]; NSLog(@"%d", [mySongs count]); </code></pre> <p>Is there an alternative/better way? Any ideas welcome.</p> http://stackoverflow.com/questions/1917014/on-iphone-find-out-what-song-is-currently-playing-in-the-ipod-music-player 1 On iPhone: Find out what song is currently playing? (in the iPod music player) Gregor Hochmuth 2009-12-16T19:22:30Z 2009-12-16T20:53:49Z <p>Apple released <a href="http://developer.apple.com/iphone/library/documentation/Audio/Conceptual/iPodLibraryAccess%5FGuide/Introduction/Introduction.html" rel="nofollow">access to the iPod Library</a> in the iPhone SDK 3.0 and I'm wondering if it's now possible to understand which song is currently playing? Title, Artist, Album suffices. Example: User opens an app and the app can know which song is playing in the background.</p> <p>Has anyone had any experience with this?</p> <p>Thanks a bunch!</p> http://stackoverflow.com/questions/1908969/iphone-or-ipod-touch-as-test-device 0 iPhone or iPod Touch as test device 4thSpace 2009-12-15T17:14:14Z 2009-12-15T17:52:07Z <p>I'd like to get a device for testing iPhone apps that I can wipe at anytime. A 1stG iPhone or iPod Touch is ideal. With an iPod touch, I'll pay for OS upgrades. However, on eBay, iPhones are going for $300+. Used iPod Touches are about $150-$200.</p> <p>I want to avoid paying a monthly fee for the iPhone, which means I'll be limited to wifi for Internet connectivity. That should be fine.</p> <p>Is there a cheaper way to get a test device or any other suggestions?</p> http://stackoverflow.com/questions/1633215/need-an-explanation-on-itunes-com-persistent-id-is-the-id-for-a-track-same-when 0 Need an explanation on iTunes COM persistent ID. Is the ID for a track same when its transferred to an iPod? detj 2009-10-27T19:44:14Z 2009-12-10T20:06:58Z <p>I am writing a JScript script with iTunes COM api for updating <code>ratings</code> and <code>played count</code> from the iPod database back into iTunes Library. In order to do so, the script should be able to recognize the songs that were transferred from this iTunes Library, so that it can read the ratings data for the track on iPod and update the corresponding track in the iTunes Library</p> <p>Here's the code I've written:</p> <pre><code>var iTunesApp = WScript.createObject("iTunes.Application"); var mainLibrary = iTunesApp.LibraryPlaylist; var iPodLibraryPlaylist = playlists.Item(1); // get the main iPod Library playlist(leaving the unimportant portion) for(j=0; j &lt;= iPodLibraryPlaylist.Tracks.Count - 1; j++) { foo = iPodLibraryPlaylist.Tracks.Item(j+1); // j+1, coz this index is 1-based (why apple...why?) bar = mainLibrary.Tracks.ItemByPersistentID(iTunesApp.ITObjectPersistentIDHigh(foo), iTunesApp.ITObjectPersistentIDLow(foo)); WScript.StdOut.WriteLine(bar.Name); // should print the name of the track, but throws runtime error: Object required } </code></pre> <p>According to the iTunes COM API</p> <blockquote> <p>You can retrieve a source, playlist, or track with a specified persistent ID using the ItemByPersistentID property of the appropriate collection interface</p> <p>ItemByPersistentID returns an IITTrack object with the specified persistent ID</p> </blockquote> <p>Now the questions are:</p> <ol> <li>Am I right in saying that the 64-bit Persistent ID for a track in iTunes Library remains the same when the track is transferred to an iPod.</li> <li>Is there anything wrong in the way i'm using the <code>ITObjectPersistentIDHigh()</code> and <code>ITObjectPersistentIDLow()</code></li> <li>Is there any totally other way to do this?</li> </ol> <p>PS: There are 662 songs on the test iPod, so there's no problem there</p> <p>Any help is much appreciated! thnx!</p> http://stackoverflow.com/questions/1842656/iphone-play-a-specific-playlist-imix 0 iPhone play a specific playlist/iMix Eli 2009-12-03T20:24:00Z 2009-12-04T18:31:33Z <p>I want to play a specific playlist (that was constructed as an iMix) from my program, as long as it exists. I am able to use [[MPMediaQuery albumsQuery] addFilterPredicate:[MPMediaPropertyPredicate predicateWithValue:@"MyAlbum" forProperty:MPMediaItemPropertyAlbumTitle]]; to get all songs in an album (as well as many other options for artists, etc.) but there seems to be no way to access playlists.</p> <p>Is there a different way to do this, or will I be forced to store all the songs in the playlist within my code and access them all that way?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1832041/how-to-programatically-detect-earpiece-in-iphone 0 How to programatically detect earpiece in iphone? DrkZeraga 2009-12-02T10:32:34Z 2009-12-02T11:52:38Z <p>I'm currently working on a project that involves playing music from the iphone music library within the app inside. I'm using MPMediaPickerController to allow the user to select their music and play it using the iPod music player within the iPhone.</p> <p>However, i ran into problem when the user insert his earpiece and removes it. The music will suddenly stop playing for no reason. After some testing, i found out that the iPod player will pause playing when the user unplug his earpiece from the device. So is there any way to programatically detect if the earpiece has been unplug so that i can resume playing the music? Or is there any way to prevent iPod player from pausing when the user unplug his earpiece?</p> http://stackoverflow.com/questions/1811063/predicting-performance-for-an-iphone-ipod-touch-app 0 Predicting performance for an iPhone/iPod Touch App Avizz 2009-11-28T00:03:26Z 2009-11-28T08:11:03Z <p>I don't have an iPhone Developer Program Account yet and will be getting one in the next couple of days. Can instruments be used with the simulator to give a rough estimate on how well my app may perform? Using instruments I checked and fixed all the leaks it was detecting, and it appears that my memory usage maxes out at about 5.77mb. Is there any other tests I could perform with instruments to judge how well my app would perform? I realize there is no way other then the actual device to get a definite answer, it would be nice to get an estimate. </p> http://stackoverflow.com/questions/1747651/about-wifimanager-bundle 0 about WifiManager.bundle Apache 2009-11-17T09:38:54Z 2009-11-17T14:10:00Z <p>hi expert, what will be the result of the </p> <p>libHandle = dlopen("/System/Library/SystemConfiguration/WiFiManager.bundle/WiFiManager", RTLD_LAZY);</p> <p>i'm using this for getting wifi info on ipod os 3.1.2., bcos when i NSLog(@"Result %@",libhandle); i'm getting null what should be the answer,</p> <p>thanks</p> http://stackoverflow.com/questions/1727417/im-getting-excbadaccess 1 i'm getting “EXC_BAD_ACCESS” Apache 2009-11-13T06:04:55Z 2009-11-13T06:39:59Z <p>Hi all, I'm getting error as below </p> <p>Program received signal: </p> <blockquote> <p>“EXC_BAD_ACCESS”. warning: check_safe_call: could not restore current frame</p> </blockquote> <p>warning: Unable to restore previously selected frame. warning: Unable to restore previously selected frame.</p> <p>my app is to get wifi information</p> <pre><code>libHandle = dlopen("/System/Library/PrivateFrameworks/ MobileWiFi.framework/MobileWiFi",RTLD_LAZY); open = dlsym(libHandle, "Apple80211Open"); bind = dlsym(libHandle, "Apple80211BindToInterface"); close = dlsym(libHandle, "Apple80211Close"); scan = dlsym(libHandle, "Apple80211Scan"); open(&amp;airportHandle); bind(airportHandle, @"en0"); </code></pre> <p>when the code reach <code>open(&amp;airportHandle)</code>, I received the error but i'm not sure because at this line it stops.</p> <p>How can I resolve this?</p> <p>thanks</p> http://stackoverflow.com/questions/1720568/whats-needed-to-use-the-apple-accessory-protocol 0 What's needed to use the Apple Accessory Protocol? Brian Surowiec 2009-11-12T07:41:06Z 2009-11-12T13:44:36Z <p>I'm in the process of planning out a personal project that will be a media player and one of the things I would like to do is be able to dock my iPod touch (or any iPod or iPhone) and control it and play music off it like the speaker docs do that you can buy.</p> <p>I <a href="http://www.adriangame.co.uk/ipod-acc-pro.html" rel="nofollow">found</a> <a href="http://ipodlinux.org/wiki/Apple%5FAccessory%5FProtocol" rel="nofollow">some</a> <a href="http://www.sparkfun.com/commerce/product%5Finfo.php?products%5Fid=704" rel="nofollow">information</a> while searching around online for this but my question is can I make up a cable and use the serial protocol from any device or does Apple have this locked down so only certified/approved devices can communicate this way?</p> http://stackoverflow.com/questions/1706730/itunes-and-applications-game-simultaneously 0 itunes and applications/ game - simultaneously [closed] Aishwarya 2009-11-10T09:45:53Z 2009-11-10T09:45:53Z <p>hi,</p> <p>i want to run ipod music and applications/games simultaneously.</p> <p>is it possible to run two different types, i.e ipod music and applications/ games.</p> <ul> <li>can we play ipod music underneath game play?</li> </ul> <p>thank you</p> <p>sudheer.</p> http://stackoverflow.com/questions/1665119/how-to-play-a-song-from-the-itunes-library-in-iphone 2 How to play a song from the itunes library in iphone Shibin Moideen 2009-11-03T03:45:28Z 2009-11-03T05:08:23Z <p>Hi i need to play a song from the itunes library. I had gone through the Apples ipod Library Access Guide and got the code.</p> <pre><code> MPMediaQuery *everything = [[MPMediaQuery alloc] init]; NSLog(@"Logging items from a generic query..."); NSArray *itemsFromGenericQuery = [everything items]; MPMediaItem *song; for (song in itemsFromGenericQuery) { NSString *songTitle = [song valueForProperty: MPMediaItemPropertyTitle]; NSLog (@"%@", songTitle); } //assign a playback queue containing all media items on the device [myPlayer setQueueWithQuery:everything];//setQueueWithQuery:everything]; //start playing from the begining [myPlayer play]; </code></pre> <p>But This will start playing from the very beginning of the library list. I need to play a song when i select it from the list. Can anyone help me please...</p> <p>Thanks, Shibin.</p> http://stackoverflow.com/questions/1238758/how-can-i-detect-if-headphones-are-connected-to-an-ipod-touch-g1 0 How can I detect if headphones are connected to an iPod touch G1? Batgar 2009-08-06T13:08:23Z 2009-10-31T05:32:53Z <p>There are many articles on how to detect if a microphone is connected to an iPod touch G2 via <strong>AudioSessionGetProperty</strong> / <strong>kAudioSessionProperty_AudioInputAvailable</strong>, but I have not seen any articles related to detection of headphones connected to an iPod touch G1.</p> <p>To review: iPod touch G2 hardware differs from iPod touch G1 hardware in the following ways:</p> <ul> <li>iPod touch G2 has an internal speaker</li> <li>iPod touch G2 is able to use microphone off of headphone port</li> </ul> <p>I have an app that needs to play sound to be useful and I want to be nice and have a detector that shows that the app is useful once they connect up some headphones.</p> <p>My initial trials show that the AudioSession APIs (and specifically the <strong>AudioSessionGetProperty</strong> with the <strong>kAudioSessionProperty_AudioRoute</strong> constant) always reports back 'Headphone' even if headphones are not connected to an iPod touch G1.</p> <p>Am I missing something? Do I have something cross wired with my AudioSession calls? If anyone has tried this on an iPod touch G1 and got a different result? Is there another way to weave through AudioSession APIs and get what I am after?</p> <p>This is all against iPhone OS 3.0 and the iPhone OS 3.0 SDK on real iPod touch G1 hardware.</p> <p>Thanks in advance, --Batgar</p> http://stackoverflow.com/questions/1644431/restoring-problem-of-ipod-2g 0 Restoring problem of iPod 2G [closed] cnook 2009-10-29T15:12:33Z 2009-10-29T15:40:12Z <p>Hi All,</p> <p>When I restore(OS 2.2.1 -> OS 3.1) my iPod 2nd generation, I met an error which message is "ERROR: Sending ramdisk to device: An error occurred performing DFU" So I cnaanot restore. If you have any idea please let me know.</p> <p>More information.. I have iPhone development program and I use organizer of XCode(3.1.4)</p> <p>I want to your answer. :)</p> http://stackoverflow.com/questions/1641181/iphone-sdk-check-ipod-playlist-to-see-whether-there-is-a-next-track-to-skip-to 0 iPhone SDK - check iPod playlist to see whether there is a next track to skip to Chris Newman 2009-10-29T01:37:56Z 2009-10-29T02:27:19Z <p>Is there a way to inspect the current playlist from MPMusicPlayerController to see whether there is another track to play in the queue?</p> <p>It's possible to detect this after as skipToNextItem will stop playback and change playbackState, but I want to find out before, so I can disable the skip track function if there are no more tracks to skip on to.</p> http://stackoverflow.com/questions/1640871/ipod-development-under-linux 0 iPod Development Under Linux Nathan Campos 2009-10-28T23:54:00Z 2009-10-29T00:03:50Z <p>Hello,</p> <p>I was thinking in start to develop iPod applications, the thing is that I use Linux(Ubuntu Hardy) and I don't know if I can develop on it, then I'm here asking for some resources and tutorials to begin. Thanks.</p> <p><strong>Remember that I don't want to develop for iPod Touch, but for iPod Video</strong></p> http://stackoverflow.com/questions/1417931/how-to-make-an-uialertviewpop-up-come-when-a-bouncing-image-touches-a-dragable 0 How to make an UIAlertView(Pop Up) Come When a Bouncing image touches a dragable image(iPhone SDK)? Rohan Dhawan 2009-09-13T14:58:23Z 2009-10-28T21:58:33Z <p>Hi Guys</p> <p>how can a pop up alert cum when an bouncing img touches a dragable image like how it is done in this app <a href="http://tinyurl.com/kspnh6" rel="nofollow">http://tinyurl.com/kspnh6</a></p> <p>Example there is an image that is going up and down the screen and it touches an image that we can drag here &amp; there,how can v bring a alertview when that image touches the moving image</p> <p>thanks</p> http://stackoverflow.com/questions/1613724/how-to-make-itunes-download-all-podcast-episodes-irrespective-of-listened-not 0 How to make Itunes download all podcast episodes irrespective of listened/not [closed] Enggr 2009-10-23T14:10:24Z 2009-10-23T14:13:27Z <p>I am a big ipod user (especially podcasts). I have used ipod touch, ipod classic and ipod nano. I noticed that Itunes stops downloading podcasts that you no longer listen to and stops downloading them. Is there a way to force itunes to download all episodes of podcasts irrespective of whether you listen to them or not? I am not interested in just clicking a episode to make itunes think that I'm listening. I need some kind of programmatic work around or batch script that runs and updates all podcasts/episodes automatically. I heard of solution in mac but not in PC. (win xp) any solution? thanks in advance</p> http://stackoverflow.com/questions/901319/apple-ipod-and-c 0 Apple Ipod and C# jeanre 2009-05-23T11:01:17Z 2009-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/1595642/how-to-show-ipod-controls 1 How to show ipod controls? Alexey 2009-10-20T15:53:21Z 2009-10-20T17:13:21Z <p>When user double-tap home button, the ipod controls shows on the screen. I want to allow user show ipod controls by tapping custom button in my application. Is any possibility to do it? Sorry for my english.</p> http://stackoverflow.com/questions/1484199/strange-behavior-with-mpmovieplayercontroller-when-programatically-changing-volum 1 Strange Behavior with MPMoviePlayerController When Programatically Changing Volume Pheroth 2009-09-27T19:03:38Z 2009-10-16T16:00:03Z <p>In my application I am changing volume using the MPMoviePlayerController volume property (for fade effects and muting while leaving it still playing). </p> <p>Sometimes, sporadically, when changing the volume, the volume display (what you see when you use the volume buttons on the side of the iphone) will flash and disappear. Is there anyway to prevent this from happening?</p> http://stackoverflow.com/questions/1555356/ipod-iphone-equalizer-in-my-app 0 IPod/IPhone equalizer in my app Dmitriy 2009-10-12T15:53:10Z 2009-10-12T15:53:10Z <p>Hi! I need to connect ipod/ipohone eq to my app. Even to load ipods eq from my app to change values. I'm trying to use audiounit to call eq but nothing happens. Anyone know what to do? Thanks.</p> http://stackoverflow.com/questions/1121821/accessing-playlist-on-ipod 0 Accessing playlist on iPod IronGoofy 2009-07-13T20:23:28Z 2009-10-08T21:28:56Z <p>I've written a little program that reads and converts my local playlists from the iTunes xml (some more background on my blog: <a href="http://smartercoding.blogspot.com/2009/07/reading-playlists-from-itunes-library.html" rel="nofollow">Reading the Playlists from the iTunes Library XML</a>).</p> <p>Now I want to do something similar with the playlists that are stored on my iPod (in my case, a 2nd generation nano; please no iPhone anwers - I'm already envious ;-)). Any legal way to do this?</p> http://stackoverflow.com/questions/1519662/ipod-controls-will-exit-my-application 1 iPod controls will exit my application sliver 2009-10-05T12:01:37Z 2009-10-05T12:16:17Z <p>I would like to allow controlling the iPod on top of my application when the user double taps the home button. I know there are a few apps out there that allow this. Unfortunately my app just quits.</p> <p>Do I have to set anything to allow this behavior? Is it possible that my app prevents the iPod app from showing above it because it also plays a sound from time to time?</p> http://stackoverflow.com/questions/1516981/what-should-i-use-to-organize-my-music-itunes-windows-media-player 0 What should I use to organize my music (iTunes, Windows Media Player...) ? [closed] Nestor 2009-10-04T17:52:45Z 2009-10-04T17:55:39Z <p>I have a PC with Windows Vista, and an iPod. I've been using iTunes, but it has several things I don't like. Should I use iTunes, Windows Media Player or something else to organize my music? Thanks, Nestor</p> http://stackoverflow.com/questions/1486986/is-there-an-ipod-sdk 4 Is there an iPod SDK? samdutton 2009-09-28T13:19:06Z 2009-09-28T14:31:09Z <p>Is it possible to write applications for the iPod and iPod Nano platforms, i.e. not iPhone / iPod Touch? </p> <p>Some iPod 'Click Wheel' games are available on iTunes, but I can't find any developer documentation.</p> http://stackoverflow.com/questions/1483247/how-to-play-ipod-music-video-on-zune 0 How to play iPod music video on Zune? [closed] Oliver 2009-09-27T10:07:41Z 2009-09-27T10:44:49Z <p>I have a iPod Touch, my brother a Zune HD, I'm looking for a good DRM converter which can remove DRM and transcode between iTunes m4v and Zune Marketplace wmv, then we can share play DRM-wrapped content from each other?</p> <p>Any suggestion will be greatly appreciated!</p> http://stackoverflow.com/questions/134048/ipod-touch-for-iphone-development 7 iPod touch for iPhone development Julius Eckert 2008-09-25T15:35:44Z 2009-09-23T09:53:33Z <p>I am thinking about buying an iPod touch to make some money on developing apps for the iPhone. I like the concept of the App Store and had a quick look at it with iTunes. Looks like applications are categorized, to be iPhone OR iPod applications. Some apps which are free for the iPod seem to cost for iPhone users.</p> <p>What is the difference of both platforms, or why is the App Store separating them ? Does it make sense to develop for the iPhone using an iPod touch (beside phone/location related apps) ?</p> <p>On developer.apple.com I can sign up for selling my Applications on the AppStore for 99$. Do I have to expect any further costs ? Is it a problem to develop from outside the US (in my case Germany) ?</p>