Album art on MPMoviePlayerController

399 Views Asked by At

I am using MPMoviePlayerController to play my podcast. I was wondering if there is a way to add an Album Art instead of having the default Quicktime logo.

2

There are 2 best solutions below

0
On

You can get the view from the MPMoviePlayerController instance. Try adding a new subview (say, UIImageView) with the AlbumArt.

0
On

You can access the album art of playing track like so.

MPMediaItem *item = [[MPMusicPlayerController iPodMusicPlayer] nowPlayingItem]; MPMediaItemArtwork *art = [item valueForProperty:MPMediaItemPropertyArtwork];

Hope this helps