Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
213 views

iOS - MPMediaItem Display a Default Artwork

I am currently developing an app that shows what artist, track and album art you're listening to in the Music player. All is going well apart from when I play a song with no artwork I want to be able ...
6
votes
2answers
461 views

How to detect if an MPMediaItem represents a DRM-protected audio track on iOS

Title pretty much says it all ... I would like to know if an MPMediaItem that represents a music track is for a Fairplay/DRM-protected item. Any way to do this?
6
votes
2answers
772 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
3answers
3k views

MPMediaItems raw song data

I was wondering how to access an MPMediaItem's raw data. Any ideas?
3
votes
0answers
227 views

How to Get lyrics of song from ipod library songs

I am Accessing ipod library in iphone application and showing title, lyrics and artwork of album.. I also want to show lyrics of songs. I have added lyrics in itunes and sync it with device.But my ...
2
votes
2answers
201 views

MPMediaItemArtwork returning wrong sized artwork

I'm seeing a consistent issue with MPMediaItemArtwork in that it's returning artwork in a size different to that which I request. The code I'm using is as follows MPMediaItem *representativeItem = ...
2
votes
0answers
249 views

Error getting artwork for current song

Grabbing album art for current song and using it to change a certain imageView.image generates an error, but no longer crashes. (It did before because I left out the if (!artwork) error handling. ...
2
votes
1answer
271 views

Import media from ipod library

i am the new for iphone programming. i need to import media from iphone media library and copy to my app's document dir. please help me. thanks in adv.
2
votes
1answer
492 views

Using MPMusicPlayerController play a MPMediaItemCollection, how to get the event of at end of playing

I'm using the MPMusicPlayerController to play MPMediaItems in a MPMediaItemCollection. How can I fire an event when the MPMediaItems are done playing? Thanks! interdev
1
vote
0answers
55 views

MPMediaItem generating unique filename

I am importing items from the iPod library and want to generate a unique filename for each MPMediaItem imported. I want the filename to uniquely represent one MPMediaItem so that if the user imports ...
1
vote
3answers
69 views

message sent to released object (never released manually)

Removed release statements. Some of them seemed to be okay, but that was probably just because other things were exploding first. - (void)handleNowPlayingItemChanged:(id)notification { ...
1
vote
1answer
127 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
2answers
554 views

ImageWithSize on MPMediaItemArtwork returns very small coverart image (55 x 55 px)

I am trying to create a very simple music player (for small children) in Monotouch and have most of it working just great. However when I iterate through MPMediaItems in a playlist and try to get ...
1
vote
0answers
371 views

Finding video content in iPhone playlist

Running iOS 4.2.1 I'm able to create a mixed playlist containing both audio and video. 3 items, first a video then 2 audio tracks. I know I'm working with the correct playlist. However, cycling ...
1
vote
1answer
225 views

Smooth table view like on iPod.app

Hey folks ;), Im trying to redo the table view in the ipod.app. The one with 2 labels and the cover on the left. I want the same information there. I mean the cover plus all the other MPMediaItem ...
0
votes
1answer
41 views

Getting iCloud status information from MPMediaItems

NSURL *assetURL = [mediaItem valueForProperty:MPMediaItemPropertyAssetURL]; NSNumber *percent = nil; NSError *error = nil; [assetURL getResourceValue:&percent ...
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
70 views

Save MPMediaItem into a NSMutableDictionary

I am trying to save the MPMediaItem in nsmutableDictionary.. Actually my purpose is to let the user select his songs and then have it saved in the app and then whenever he wants he can play. i have ...
0
votes
1answer
37 views

Get Particular file form MPMediaItem

I am using MPMediaItem, and getting all songs from library. My issue is, if i want to get only particular file which I want. Anybody can know ?
0
votes
0answers
102 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
52 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
1answer
51 views

MPMusicPlayerController Track Length

Using an MPMusicPlayerController is there a way to query the tracks length? Using .currentPlaybackTime I can figure out how far I am into the track but I have no way of knowing how long the track is. ...
0
votes
0answers
17 views

iOS: Detect 'Part of Gapless Album' flag

Is there a way from an MPMediaItem to detect if the song is part of a gapless album? It doesn't appear to be one of the basic properties of the MediaItem. The setting described here: ...
0
votes
1answer
116 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
0answers
42 views

MPMediaItem access from NSBundle?

I want to store an audiofile as object just like I can do it with UIImage *photo(photo.image). Is it possible with MPMediaItem? I have added an audio file in my NSBundle.
0
votes
1answer
88 views

iPhone4 iOS5 how to save MPMediaItem with Core Data?

I'm trying to save a list of music files that the user has selected from the iPod music library. To do so, I get a list of persistentIDs which I will use to query the library later. I do this as ...
0
votes
0answers
124 views

Can MPMusicPlayerController can play music from local resource?

i wanna play music with MPMusicPlayerController. MPMediaItem * mediaItem = []; MPMediaItemCollection *songs; NSArray * array = [NSArray arrayWithObjects:mediaItem, nil]; songs = ...
0
votes
0answers
69 views

Custom iPod Player doesn't update MPMediaItem Values like MPMediaItemPropertyLastPlayedDate

I want to scan the users iPod library with an App. therefore i want to use MPMediaItemPropertyLastPlayedDate for getting the time in seconds (or days, hours) when the song was played the last time. ...
0
votes
1answer
125 views

What's the fastest way in iOS to retrieve the number of songs for a specific artist?

I am trying to retrieve all the artists on the local iOS device, and for each artist, the number of songs available for that artist. I currently am doing this in a straight-forward fashion, by ...
0
votes
1answer
137 views

How to compare AVPlayer Cureent Item with MPMedia Item?

I am implementing an audio based application. In that I am using AVPlayer to play the list of MPMedia items selected from iPod Library. In my app I need to test 1 case, that is I need to compare the ...
0
votes
0answers
178 views

How to set a new MPMediaItem to play with MPMusicPlayerController

I've already done this think. But it only works on iOS 4.3, and it works great. I had used: MPMusicPlayerController *musicPlayer = [MPMusicPlayerController iPodMusicPlayer]; //get the MPMediaItem, ...
0
votes
0answers
61 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
2answers
298 views

Not able to get the UIImage from MPMediaItemPropertyArtWork

I have the following code to get the UIImage from MPMediaItemPropertyArtWork to display the coverArt in my view. I get a non-NULL artwork from the mediaItem, however, when I try to extract the UIImage ...
0
votes
1answer
110 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
195 views

iPhone song lyrics access

I'm trying to get the lyrics for a song on an iOS device and the examples I've found on the web and stackoverflow show getting the song's MPMediaItem (i.e. using a [MPMediaQuery songsQuery] with ...
0
votes
0answers
88 views

Play THE music selected by the user

I created a program that lets you play the music contained in a device (ipod, iphone, IPAD). The user chooses a music, in his library, to play. Then, I created a collection of items in which I store ...
0
votes
0answers
495 views

Converting MPMediaItem to NSData

I'm trying to convert an MPMediaItem to NSData object so I can play it with AVAudioPlayer. The following answer was posted a while back on a similar question, with steps on how to to that: ...
0
votes
1answer
233 views

MPMedia Load album by artist

I want to load album's list and album's songs list like default music app. If I select 'Coldplay', view changes and it loads coldplay's album lists. And I select 'X&Y'(Album name), view changes ...
0
votes
1answer
367 views

Play music when I select UITableViewCell

I can show music library on UITableView. songsArray = [[NSMutableArray alloc]init]; MPMediaQuery *playlistQuery = [[MPMediaQuery alloc]init]; [playlistQuery setGroupingType:MPMediaGroupingTitle]; ...
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
3answers
139 views

Is there a way to get information about the previous iPod song?

I'm trying to store the playhead time of a song (MPMediaItem) before the next song begins to play. How would you do that? Is there something like ...
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 ...
0
votes
0answers
243 views

can't get artwork from MPMediaItem

have this code: MPMediaItemArtwork *theArtwork = [item valueForProperty: MPMediaItemPropertyArtwork]; group.artwork = [theArtwork imageWithSize: CGSizeMake( 90.0, 90.0 )]; 'group' is a custom ...
0
votes
1answer
578 views

Position of nowPlayingItem in a playlist/Adding categories to MPMediaItem

I'm trying to figure out the track number of the MPMusicPlayerController's nowPlayingItem in its playlist. This would be super simple, except for the fact that the same song can appear multiple times ...
0
votes
1answer
164 views

getting the next and previous track if using iPodMusicPlayer

Im using an iPodMusicPlayer for my MPMusicController. My question is once my appplication is launched and will continue what the iPod app is playing, can i retrieve the MPMediaItem of the next and ...
0
votes
2answers
567 views

Using iPhone audio files in own app - copy the audio file - is that possible?

I like the user to pick an audio file from the available list of audio and copy it into my own app. In the retrieved items of userMediaItemCollection in the Apple sample code "AddMusic" there is the ...
0
votes
1answer
930 views

How to get a MPMediaItem from MPMoviePlayerController?

How can i get MPMediaItem from MPMoviePlayerController as i can get it in case of MusicPlayer as follows MPMediaItem *currentItem = self.musicPlayer.nowPlayingItem; But how to get it from ...
0
votes
1answer
594 views

MPMediaPickerController - deselecting after selecting in error

Problem is evident in both the code I've written and Apple's sample AddMusic code (http://developer.apple.com/iphone/library/samplecode/AddMusic/index.html runs on Device Only). Once you open ...