Use an MPMusicPlayerController object, or music player, to play media items from the device iPod library.

learn more… | top users | synonyms

2
votes
3answers
56 views

MPMusicPlayerController with AirPlay?

I am creating an audio app which uses iPod Music Player, I need Airplay functionality. I also used RoutePlayButton in MPVolumeView slider. I don't have apple TV to test if it will work or not. ...
0
votes
1answer
31 views

AVQueuePlayer is pausing but play icon won't disappear

I'm building an application that uses an AVQueuePlayer to stream audio. I have my AVAudioSession set up with the category AVAudioSessionCategoryPlayback and I'm able to receive events from ...
0
votes
1answer
39 views

MPMusicPlayerController not responding to currentPlaybackRate near 1

I'm trying to use the currentPlaybackRate property on MPMusicPlayerController to adjust the tempo of a music track as it plays. The property works as expected when the rate is less than 0.90 or ...
0
votes
0answers
37 views

MPMusicPlayerController dont work unless music was running ios6

When using MPMusicPlayerController on iOS6 I must run the music app first and play music, only then MPMusicPlayerController play will work. MPMusicPlayerController *appPlayer = ...
6
votes
1answer
145 views

How to sync music from pc to iphone music library programmatically? [closed]

Hell guys, is it possible to sync music from computer to a music library in a iphone/ipod/ipad device programmatically with objective-c? If yes then please tell how to do? Thanks in advance.
-3
votes
1answer
55 views

MPMusicPlayerController random songs

i have this code for select and play an ipod songs - (void)mediaPicker: (MPMediaPickerController *)mediaPicker didPickMediaItems:(MPMediaItemCollection *)mediaItemCollection{ [self ...
0
votes
0answers
29 views

IOS/IPod framework, how to retrieve Song with only MPMediaItemPropertyPersistentID?

Is there any 'easier' way of retrieving a song from the Music Library (given you have the MPMediaItemPropertyPersistentID) This is what i'm using at the moment: I have a NSArray (trackList) stored ...
0
votes
0answers
24 views

Execute code in audio application running in background

I've application playing audio (UIBackgroundModes is set to audio). The audio is playing as suspected. The question is if it's possible to execute some code (for example to send http request with ...
0
votes
1answer
23 views

Dim volume of iPodMusicPlayer to 50% in iOS

I know that you can easily set the volume property of the music player, but I want to do it smoothly like Google Maps does when they use the voiceover for navigation instructions. I was wondering ...
2
votes
1answer
70 views

Is it possible to control iTunes from an app (to make it play a paused song)?

I'm looking at the MPMusicPlayerController class, which lets you create an iPodMusicPlayer with a playbackState that is readonly. I'm wondering if there's a way for me to modify the playbackState ...
1
vote
0answers
36 views

Is MPMusicPlayerController working properly on iPod 5g?

I am developing an application for iOS which works in two different modes, one of them plays music from the iPod library, and the other one synthesizes sounds (eg: pure tones). In order to synthesize ...
0
votes
0answers
221 views

MPMoviePlayerController, playing in background with audio and video (detach video layer?)

I'm having some issues getting a MPMoviePlayerController playing both audio and video to continue once the screen locks/ app is backgrounded. Here's what I've tried: "Required background modes" is ...
0
votes
1answer
68 views

MPMusicPlayerController stop and can't resume when play audio from somewhere in iOS

I am doing Music App with iPodMusicPlayerController. I am fine play songs from iPod Library. However one thing. when i playing songs from iPod Library and i go to safari or something and play music ...
1
vote
2answers
31 views

Do i need to stop MusicPlayerController first before i play to next song in iOS?

In my app , i have to play songs from iPod Library with MPMusicPlayerContrller's iPodMusicPlayer. I just want to know , in my app , first song is playing from Album and when i want to play another ...
0
votes
0answers
69 views

kAudioSessionProperty_OtherMixableAudioShouldDuck volume

I have starting learning/playing with music and sounds for an iOS app. With a heap of help from reading through this forum I have managed to continue the sounds in the background when the screen is ...
1
vote
0answers
88 views

convert MPMediaItemCollection into the Nsdata

I had imported an .mp3 file form MPMediaPickerController by below code:- MPMediaPickerController *mediaPicker = [[MPMediaPickerController alloc] initWithMediaTypes: MPMediaTypeAny]; ...
0
votes
0answers
52 views

Create animation matching with music bit rate

I want to create an animation which will match the playing music, like if the music is soft music (like classical) animation will be slow, if music is fast (metal/rock) animation will be fast. Is ...
1
vote
1answer
62 views

Can't play songs from bundle with iPodMusicPlayer in iOS

I am trying to play songs from bundle(document directory) in my app with iPodMusicPlayer. I don't want to play with AVPlayer. Here is some of my code: NSString *bundleRoot = [[NSBundle mainBundle] ...
1
vote
1answer
74 views

Fetch list of all artists from iOS Media Library

I wish to fetch a MPMediaItemCollection or NSArray of all artists in a user's library. Here's my current code (which obviously doesn't work): - (void)viewDidLoad { [super viewDidLoad]; ...
0
votes
1answer
62 views

mp3 is not playing in mobile browsers

hi i have page where i am allowing myusers to listen music online everything works just fine in pc but when i try to check in nokia symbian , blackberry android nothing plays i am using flash mp3 ...
0
votes
0answers
26 views

Increasing allocating Memory with iPodMusicPlayer in iOS

I am developing custom music app that used of MPMusicPlayerController's iPodMusicPlayer. When i test my app with Instrument,memory are increasing automatically while i am not playing anything. I ...
0
votes
2answers
120 views

MPMusicPlayerController volum not changing

I'm creating an radio application in ios. I want to change the volum by using a slider. So I defined an IBAction (- (IBAction)sliderValueChanged : (UISlider *)sender) and drag the Value Changed event ...
1
vote
1answer
225 views

Public API for iOS music player?

Is there any way I can access music playing in the native iOS music app? For example on button press in my app it pauses the built in Music app. I've tried MPMusicPlayerController but that doesn't ...
2
votes
1answer
75 views

Does MPMusicPlayerController update Play Count?

In my testing, it seems that playing MPMediaItem through MPMusicPlayerController does not update the Play Count (using iPod or application instance) Can anyone confirm this? I haven't seen anything ...
1
vote
2answers
238 views

How to play background music with MPMusicPlayerController's applicationMusicPlayer in iOS?

Hello i am trying to play background music with MPMusicPlayerController's applicationMusicPlayer in iOS. I have also added Required background modes in Plist. But it doesn't play background music. ...
0
votes
1answer
208 views

Playing and SkipNext Song from Playlists with MPMusicPlayerController in iOS

I have playlists songs in NSArray and show that songs in my UITableView like following pic. In my case, when i select one song from UITableView , i want to play that song with ...
1
vote
1answer
148 views

How can I hide the Iphone volume box while changing the volume with a UISlider?

I'm trying to change the volume in my app with a UISlider. The code I'm using for this is: [[MPMusicPlayerController applicationMusicPlayer] setVolume:_volumeSlider.value]; The problem with this ...
1
vote
1answer
248 views

AVAudioPlayer don't work in AVAudioSessionCategoryAmbient mode in iOS 6.0.1?

In my app, I use a MPMusicPlayerController play .mp3 as background music, and an AVAudioPlayer play sound-effect, just like button press, and so on. The code is like this: // Initialization code ...
0
votes
0answers
75 views

Wrong playlist is playing when musicPlayer uses setQueueWithItemCollection:playlist

I am trying to load a playlist from my iTunes library using the following code. The code works for all playlist names except for the one called "Christmas & pop mix" (other playlist names also ...
0
votes
0answers
170 views

iPhone record audio from mic while playing music from iPod library using MPMusicPlayerController

Is it possible while playing music from iPod library using MPMusicPlayerController, recording voice form mic on iPhone? If possible, any sample or code?
0
votes
0answers
198 views

How do I set higher priority for audio processing thread, so my RemoteIO Audio Unit would perform without glitches?

I noticed there are audible sound gaps with audio units rendering when something heavy happens on UI main thread, for instance, first show of UIAlertView or some heavy ui controller. Please take a ...
0
votes
1answer
155 views

Fetching a particular playlist from iMusic Library in iOS SDK

I am an iOS Developer.I am working on iMusic Library.I need to fetch the particular particular playlist from iMusic Library in iOS SDK.Like "Recently added","Top 25" or any other playlist created by ...
1
vote
2answers
101 views

Access meta data of currently played track (other than iPodMusicPlayer)

Right now, I'm getting information of the currently played song using: MPMusicPlayerController *controller = [MPMusicPlayerController iPodMusicPlayer]; However, this only works for tracks that are ...
1
vote
1answer
341 views

iOS receive Media Player Notifications when app is in background

Probably a simple question - can an iOS app continue to receive media player notifications [NSNotifications] (i.e. MPMusicPlayerControllerNowPlayingItemDidChangeNotification) once it moves into ...
1
vote
1answer
80 views

MPMediaPlayerController how to play repeat audio

How to play repeat , shuffle with MPMusicPlayerController ? I have already set [player setRepeatMode:MPMusicRepeatModeDefault];
1
vote
1answer
190 views

How to get the current playing song name from another app like Spotify,Pandora on iphone?

Is there any way to get the title of a song if its being played from Spotify,Pandora or some other music app, Assuming the app supports iOS 5's or 6's.
0
votes
2answers
2k views

How to play Video-Audio on iOS 6?

I am playing videos and audio in my iOS app using AVAudioPlayer for Audio files (.mp3 files) and MPMoviePlayerViewController for videos files (.mp4 files). It works fine on iOS 5 and lower versions. ...
1
vote
1answer
410 views

MPMusicPlayerController applicationMusicPlayer - Resume when application launches

The MPMusicPlayerController applicationMusicPlayer runs independent of the iPod (or Music) app, which is what I want. It stops playing when the application goes into the background which is again what ...
0
votes
0answers
147 views

Real-time effects using MPMusicPlayerController?

I read on many questions that if one would like to apply effects (like an EQ) to a song from the iPod library, one would have to copy it into the Documents folder and then use audio units . My ...
1
vote
0answers
149 views

How do I make MPMusicPlayerController register changes in playlist?

I'm trying to build a music player app in xcode, but I'm having trouble when changing the playlist (a.k.a. the music player queue). Any time I change something in my playlist (i.e. when addind songs ...
0
votes
0answers
77 views

MPAudioPlayerController interrupted by Home button can not save state

Using the AppDelegate, we respond to notifications: applicationWillResignActive and applicationDidBecomeActive In our main routine, the above calls trigger saveAudioState and restoreAudioState ...
3
votes
2answers
169 views

Play silent videos alongwith the Music App playing songs

Ok, so I have an app in which there are many videos of exercises, which do not have any sound at all. Also, at the start of the exercises, I display all the mp3 files from the Music Player of the ...
5
votes
1answer
146 views

Is it possible to detect non-ipod music?

Is there any way to detect if music or media from another source other than the iPod app is playing? I know that I can detect music playing from ipod with: [[MPMusicPlayerController ...
0
votes
1answer
223 views

How to get nowplaying infomation in Thirdparty music application?

I want to get nowplaying infomation. So, following this code: NSDictionary *info = [[MPNowPlayingInfoCenter defaultCenter] nowPlayingInfo]; NSString *title = [info ...
0
votes
1answer
178 views

Can MPMusicPlayerController be used to play a local audio file?

Can MPMusicPlayerController be used to play a local audio file i.e. one that is within my app's bundle as opposed within the iPod? I've looked at the documentation and past postings but doesn't look ...
0
votes
2answers
74 views

Play Resource MP3s [closed]

I want to create an iPod-like application that will play only MP3 files I have inside the resource folder of the project. Which way should I do it?
1
vote
1answer
507 views

iOS - get playlist from didPickMediaItems

I want to know when a user selects a song using media picker, what playlist they picked the song from. For some reason, the playlist doesn't seem to exist. Basically when a user goes to a playlist in ...
5
votes
1answer
302 views

How can we control bass of music in iPhone sdk? [closed]

I want to control the bass of song played by user from iPod music library. I've searched on Google and got some AudioMixer samples which were of no help, but now I have got bass library i.e. ...
1
vote
1answer
202 views

objective c iphone musicplayer crashing

I am creating a non appstore jailbreak tweak and I came across a problem that causes my app to crash. I am using musicPlayer = [MPMusicPlayerController iPodMusicPlayer]; the music player has ...
0
votes
1answer
271 views

iPhone: What is MPMusicPlaybackStateInterrupted? And what is difference between it and MPMusicPlaybackStatePaused

I have some questions about MPMusicPlayerController's playbackState properties. In the document, MPMusicPlaybackStateInterrupted and MPMusicPlaybackStatePaused are defined as follows: ...

1 2 3 4