Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
1k views

Best Practices for persisting iPod Playlist (MPMediaItemCollection) across sessions

When using in-app audio in the iPhone SDK, it is possible to allow users to select a list from their ipod library and create an in-app local playlist. If I want to persist this choice, it is easy to ...
2
votes
2answers
433 views

MPMediaPickerController in one view and the MPMediaPlayback in another view. How to?

Basically I have a three view stack. In the last view I got a MPMediaPickerController that lets the user pick a song from his/her library. The song is to be played later from the first view. How can I ...
2
votes
1answer
386 views

How do I clear the queue of a MPMusicPlayerController?

I'm trying to replicate the clear queue functionality of the iPod application, however I can't create an empty MPMediaItemCollection with which to call setQueueWithItemCollection: e.g. ...
1
vote
0answers
76 views

Persist a MPMediaItemCollection Object Using NSUserDefaults

How do you persist a MPMediaItemCollection object using NSUserDefaults? The MPMediaItemCollection object is a single song selected from the iPod. I have been struggling with this for hours! Anyone ...
1
vote
1answer
224 views

Way to persist MPMediaItemCollection objects? (selected from iPod)

I am making an app in which the user can select a song in a settings tab and have this played in a different view on demand. I want it so that this item can be stored if the user is to shut the app ...
1
vote
0answers
214 views

iPhone SDK Xcode 4 - put iPod mediaItemCollection data in UITableView [RESOLVED]

I need some help putting the "mediaItemCollection" data in a UITableView. Code: // Responds to the user tapping Done after choosing music. - (void) mediaPicker: (MPMediaPickerController *) ...
1
vote
1answer
133 views

Big problems when adding the same MPMediaItem into an iPod queue - how can I track which one is playing?

I've had a few complaints about my app, InstanTunes, when people are adding the same song twice to the queue, which is queued in the iPod app. [[MPMusicPlayerController iPodMusicPlayer] ...
1
vote
1answer
358 views

How can I store the song the user chose in my iPhone app and later retrieve it and play it?

I'm diving into iOS development and have been slowly building my own alarm clock app to learn how to develop on the platform. I want my alarm clock to allow me to display a list of songs on my iOS ...
1
vote
1answer
450 views

Why is setting queue in a MPMusicPlayerController only adding first track in collection?

I have an Album object containing a MPMediaItemCollection of the album's tracks. When I add this collecton to the queue with the following line of code, only the first track gets added. ...
0
votes
1answer
150 views

iTunes Match + AVplayer + MPMediaQuery not working

I'm developing an app which makes usage of AVPlayer, MPMediaItem and MPMediaQuery. It works as long as Itunes match. We start with a MPMediaQuery, then we perform some filtering leaving some ...
0
votes
1answer
62 views

MPMediaItemCollection Whole Library?

Does anyone know if it's possible to create an MPMediaItemCollection object containing every song in a users iPod library without the user having to select it using the MPMediaPicker stuff? Like, on ...
0
votes
0answers
67 views

MPMusicPlayerController stop responding

I've created an app that uses MPMusicPlayerController. MPMusicPlayerController *musicPlayer = [MPMusicPlayerController iPodMusicPlayer]; I've created a NavigationController that has "Add button" ...
0
votes
0answers
69 views

Convert MPMediaItemCollection to Song Title String

I am making an app in which the user can select his or her own iPod songs using MPMediaPickerController. Right now I have it so that the user can select a single song and that data is saved and ...
0
votes
0answers
18 views

How do I freeze and unpack the state of playing/played MPMediaItemCollection?

I switch around MPMediaItemCollections to my MPMediaPlayerController in my app and I was wondering if there was an easy way to save the current state of the currently playing item when I switch ...
0
votes
1answer
93 views

Is it possible to uniquely identify duplicate MPMediaItems within an MPMediaCollection?

I am using an MPMediaItemCollection to hold a number of user selected music tracks from the iPod music library. I want to be able to uniquely identify each MPMediaItem within the collection even if ...
0
votes
0answers
69 views

Removing an Item from MPMedaiItemCollection

I am implementing an application that supports iPod application with in the app. I need to make some changes after I get the MPMediaItemCollection from the iPod Library. One of them is I need to ...
0
votes
1answer
175 views

add item to MPMediaItemCollection from NSURL

In .plist file I keep NSURLs of audio files from iPod library. I need to initialize MPMediaItemCollection items by these urls. How can I do that? Thanks.
0
votes
1answer
141 views

MPMediaItemCollection Delete selcted que/collection?

I am currently looking at apple 'addmusic' example and playing around with it before i start rewriting it into my application. I noticed that it makes its own little playlist of the songs qued. what ...
0
votes
0answers
180 views

mpmusicplayer does not play anything when setQueueWithItemCollection with collection item of multiple song

Hi am quite a newbie ti iphone development,am trying to add multiple song to collection and then initialize mpmusicplayer queue with that collection items array, by doing the following , mpmusicplayer ...
0
votes
1answer
86 views

store multiple song in mpplayer that are being fetch from database having song persistent id

i am trying to store multiple song in mpplayer that are being fetch from database having song persistent id..but only single song is being added .here is what i am doing MPMediaQuery *query = ...
0
votes
1answer
300 views

How do i save MPMediaItemCollection to NSUSerDefaults?

Anybody know how to do this? The standard method will not work. I want the user to pick a song, and then have it save for the next time they load the app, but i can't seem to get it into ...
0
votes
1answer
85 views

Why is the sound not playing?

So this is the code I have: At the press of a button: -(void)mediaPicker: (MPMediaPickerController *)mediaPicker didPickMediaItems:(MPMediaItemCollection *)mediaItemCollection { [self ...
0
votes
2answers
1k views

How can I use AVAssetExportSession to overwrite songs in my iPhone/iPod library?

So supposedly in the iOS 4 SDK you can edit and write to the user's iTunes library. I can successfully load an AVAsset from my iPhone/iPod library, but as a quick test I'm trying to just overwrite the ...
0
votes
1answer
708 views

Bug in iPhone Library Access?

This code: MPMediaQuery *query = [MPMediaQuery artistsQuery]; NSArray *songsByArtist = [query collections]; for( MPMediaItemCollection *c in songsByArtist ) { NSLog(@"artist %@ has %u songs",[[c ...