Tagged Questions

A media query specifies a set of media items (instances of MPMediaItem) from the iPod library by way of a filter and a grouping type. Filter and grouping type are both optional; an unqualified query matches the entire library.

learn more… | top users | synonyms

6
votes
2answers
769 views

Load songs from iPod Library right after sync

I'm developing an iPhone application that uses the iPod library to play some songs. I load the songs with the code below. The problem is, when running this code right after the device has been synced ...
5
votes
1answer
778 views

Using MPMediaQuery to query ios library by rating

I'm developing an iphone 4 app that filters the local media library by different criteria. I have been able to filter by song name, artist, and genre. Now I need to add a rating filter mechanism. I ...
3
votes
3answers
627 views

NSNumber for MPMediaItemPropertyPersistentID to NSString and back again

I'm looping through all the songs from an iPhone's music library using the following code: NSArray * songs = [[NSArray alloc] initWithArray:[[MPMediaQuery songsQuery] collections]]; for ...
3
votes
2answers
2k views

iPhone sdk, save MPMediaItemCollection?

I have my application displaying a MPMediaPickerController. I would like to save the MediaItem and start it playing again on startup. I think this is doable using the MPMediaQuery. It seems, I should ...
2
votes
2answers
802 views

setVolume not working on AVMutableAudioMixInputParameters with playing from phones local iPod library

I'm currently trying to play music from a phones local iPod library using AVPlayer rather than MPMusicPlayerController using the application controller. I can get it select a track from the local ...
1
vote
0answers
15 views

Is it possible to page through results from a MPMediaQuery with MPMediaPropertyPredicate?

I have users who apparently have much larger music libraries than I do on my test devices. Now I am loading up a device with 30k+ songs so that I can stress test this querying system. If there is not ...
1
vote
0answers
40 views

How to get MPMediaPlaylist for localized “Purchased” and “Purchased on My iPhone” playlist?

How to manage to get the "Purchased" and "Purchased on my iPhone" MPMediaPlaylist, using localized strings name as playlists names: NSArray *songs; NSString *name=@"Purchased"; // @TODO // need to ...
1
vote
1answer
314 views

NULL MPMediaitemPropertyAssetURL

Using MPMediaQuery and then getting the MPMediaitemPropertyAssetURL from the song results sometimes returns null (and by sometimes I mean in this case, 1/3 of the users song library). Does anyone ...
1
vote
2answers
2k views

iPhone play a specific playlist/iMix

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 ...
0
votes
0answers
11 views

iOS query audiobooks in iPod library grouped by book

I'm trying to replicate the iOS music app's audiobook functionality. I want to query all audiobooks in the iPod library. It shouldn't show each individual part but should show each book. Tapping a ...
0
votes
0answers
37 views

How can MPMediaQuery be used to find music by multiple artists?

Apple's documentation states "Do not apply more than one predicate for a particular media item property." So if I'm reading that correctly, I cannot do an MPMediaQuery specifying multiple artist names ...
0
votes
0answers
34 views

MPMediaItem sorting issue

I'm struggling against what it seems a bug to me. If you query the iPod library adding a value for the filter predicate "MPMediaItemPropertyAlbumPersistentID" (MPMediaItemPropertyAlbumTitle doesn't ...
0
votes
1answer
107 views

MPMediaQuery using MPMediaPropertyPredicate without punctuation

MPMediaPropertyPredicate *titlePredicate = [MPMediaPropertyPredicate predicateWithValue:searchText ...
0
votes
1answer
115 views

UILocalizedIndexedCollation - MPMediaQuery

The following code, is used to partition and add sections to a list of songs. query = [MPMediaQuery songsQuery]; [query addFilterPredicate: artistNamePredicate]; NSArray ...
0
votes
1answer
89 views

Getting the most played track out of the iPod libray (MPMediaQuery)

does anyone has experience with MPMediaQueries? i need to get out the 25 most Played Songs out from my iPod Library with my iPhone app. i am using a MPMediaQuery. One solutions would be to loop ...
0
votes
1answer
159 views

Detecting music video from iPhone/Pad music library

Im using MPMediaQuery to search the library on a user's iPhone/Pad. Im able to return audio tracks but im unable to return any of the videos which are on the device. Apparently its not possible ...
0
votes
0answers
86 views

iPhone: archiving a NSMutableArray with MPMediaCollections in it?

i need to save/archive an array of MPMediaCollections but although my logs show me that it successfully archived the array there isn't anything in it when unarchiving! i hope you can help.. here's ...
0
votes
1answer
199 views

How to get iTunes ID for a song in the iPhone music library?

I'm querying the iPhone media library using MPMediaQuery and getting a list of all the artists and albums. How do I get the iTunes ID for each artists, album or song so I can uniquely identify it? ...
0
votes
1answer
109 views

Can I use MPMediaQuery to get the year of a song?

I've been reading the iOS iPod library documentation, trying to figure out if there is a way to fecth or filter song and/or albums by the year of publication. The MPMediaItem Class reference states ...
0
votes
1answer
210 views

Cryptic SQLite console output in Objective-C

When running my program to query the iPod library of my iPhone, I get the following output in the console: CPSqliteStatementPerform: attempt to write a readonly database for UPDATE ddd.ext_container ...
0
votes
0answers
154 views

iPod media query predicates - is there a “not”?

I'm currently scoping a project and looking into the possibilities of querying the media library, and I was wondering if there was anyway to incorporate a "not" into the MPMediaPropertyPredicate or ...
0
votes
1answer
81 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
0answers
179 views

MPMediaPredicate - Very ODD issue

I've written an app (Muzik for iPhone) that I'm updating to have a detail view off of the Albums List. Tap an Album and a Detail View presents itself for you to choose a song. Sounds easy enough, ...
0
votes
1answer
187 views

Query two and more song at one time using the function “addFilterPredicate” by MPMediaItemPropertyPersistentID

My app loads a music playlist automatically when it starts up. In order to do this, I store the song IDs MPMediaItemPropertyPersistentID to a database, and load the songs when the app is starting up ...
0
votes
0answers
149 views

Is it possible to get the artwork for a podcast?

Ok, I broke this down as simple as possible. I created a view-based app and added this code: - (void)viewDidLoad { MPMediaPropertyPredicate *podcastPred = [MPMediaPropertyPredicate ...