Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
1k views

How to stop MPMusicPlayerController from enabling screen locking

I have an application that requires the iPhone screen to remain active (or not, depending on user choice). I've done this by disabling the application idle timer, which works fine and dandy until I ...
7
votes
1answer
691 views

MPMusicPlayerController: iPod stops sending notifications, when iPod App is terminated in background

I am using a music player property for iPod player controller. // .h @property (nonatomic, retain) MPMusicPlayerController *ipodPlayer; // .m ipodPlayer = [MPMusicPlayerController iPodMusicPlayer]; ...
6
votes
3answers
620 views

iPod Volume Level Affects App Volume Level

I am writing an iPad app that uses the "Flite" text-to-speech engine to announce specific events. The Flite engine uses an AVAudioPlayer instance to play the speech audio once it renders. For fun, I ...
5
votes
1answer
781 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 ...
5
votes
2answers
1k views

Background Audio and Remote Control Support using MPMusicPlayerController on iOS 4. Is this even possible?

I've spent two days on this and have gotten nowhere. I'm trying to use [MPMusicPlayerController applicationMusicPlayer] to play audio chosen from the user's iPod library and have it run in the ...
4
votes
2answers
169 views

MPMusicPlayerController and setNowPlayingItem

I'm using MPMusicPlayerController, specifically with setNowPlayingItem protocol and it's for cydia. But I have some issues and theos' warning when i make. It seems that some of the protocols and ...
4
votes
2answers
317 views

How to detect if the iphone is synced when app is not running

I would like to know if there is any way to detect if the iphone music library has changed when my app is not running. There is a property lastModifiedDate in MPMediaLibrary class which does this but ...
4
votes
3answers
3k views

How to enable iPod controls in the background to control non-iPod music in iOS 4?

A good example of what I'm trying to accomplish is implemented in the latest version of the Spotify iPhone application for (Pandora seems to have the same feature) . When Spotify is in the ...
4
votes
5answers
5k views

How to play the iPod Library file in the AVPlayer

I need your help Please tell me how you taken the ipod library music file in the AVAudioPlayer? Thanks, Karthick
3
votes
1answer
405 views

Fade out Playback Volume on MPMusicPlayerController on iOS 5

I was using this answer for how to fade out music player volume in my app, but in iOS 5, this leads to the on-screen HUD for volume appearing to the user, as if they had pressed the volume buttons on ...
3
votes
1answer
1k views

Get album artwork from MP3 file/ID3 tag

I'm trying to get the album artwork from a MP3 file. In this case I use AVAudioPlayer to play the file. Here's the code that I thought would get the album artwork: MPMusicPlayerController ...
3
votes
1answer
560 views

How to change volume with MPMusicPlayerController without affecting the device volume

I am using MPMusicPlayerController and AVAudioPlayer simultaneously. For audio balancing, I have two volume sliders for MPMusicPlayerController and AVAudioPlayer each. If I mute the MPMusicPlayer ...
3
votes
1answer
2k views

iPhone App backgrounding with MPMusicPlayer

I'm working on an iPhone iOS4 application that incorporates playing music from the user's iPod library. I also want to keep track of what songs have been played and be able to change the song ...
3
votes
2answers
477 views

MPMusicPlayerController stops working after iTunes sync

I know there's a similar question MPMusicPlayerController stops sending notifications, but the answer to that question doesn't solve this problem. I'm using iOS 4, and this happens on both ...
3
votes
1answer
535 views

Can I get an audio session / apply audio units to playback from MPMusicPlayerController?

I'd like to take control of the audio coming from MPMusicPlayerController (i.e., playing from the iPod library). For example, I'd like to apply EQ to it or do DSP, reverb, that kind of thing. Is this ...
3
votes
1answer
2k views

How do I play music using MPMusicPlayerController?

Can any one suggest me how to play the music using MPMusicPlayerController in my application. Anyone's help will be very much appreciated. Thank you, Monish.
2
votes
1answer
47 views

Did MPMusicPlayerController change with iOS 5?

I had an app which worked correctly in iOS 4.3, after upgrading to iOS 5 it behaves in another way. After executing these lines on iOS 4.3 mp.playbackState is set to MPMusicPlaybackStatePaused, ...
2
votes
0answers
60 views

Strange behavior of MPMusicPlayerController.currentPlaybackTime

While a song is being played, I tried to get currentPlaybackTime. NSLog(@"Playback: %f", appDelegate.appMusicPlayer.currentPlaybackTime); I always got "Playback: nan". The application gets ...
2
votes
1answer
344 views

applicationMusicPlayer volume notification

I am using an applicationMusicPlayer and when i try to change the volume appear the visual notification, as shown in the picture. Here the code I am using: [MPMusicPlayerController ...
2
votes
1answer
203 views

Is it possible to use different volume levels for different players (AVAudio Player and MPMusicPlayer) while they are playing simultaneously?

I need to set different volume levels for different players using AVAudio and MPMusic Players, I am playing both players but I do not know how to set different different volumes levels. Thank you, ...
2
votes
0answers
248 views

Playing music from iPod library with no delay

I am trying to play audio files from the iPod library without any delay from calling 'play' to when the actual music starts. I tried using the MPMusicPlayerController, but sometimes there is a delay, ...
2
votes
1answer
211 views

How do i set the iPod volume without affecting other sound levels?

I tried setting the iPod volume level before, but it affected the volume of my app, which uses MPMusicPlayer. Any solution to this?
2
votes
1answer
490 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
2
votes
1answer
397 views

Change color of navigation bar of the MPMediaPickerController, possible?

I have a MPMediaPickerController that lets the user pick his/her own songs in my app. Problem is my app has the "black" navigation bar throughout and the picker is the standard blue. Now I know it's ...
2
votes
3answers
2k views

Audio Session “Ducking” Broken in iOS 4…?

I've an app which uses the MPAudioPlayerController to access the iPod music library, and an AVAudioPlayer to overlay audio on top of the music. I've used this documentation as a guide. Specifically: ...
2
votes
1answer
818 views

Using MPMusicPlayerController, setting musicPlayer.currentPlaybackTime to seek but takes second to take effect

I have a UISlider acting as the scrubber. As the thumb is dragged I execute the following: - (void) _seekTo:(double)playbackTime { mPlayer.currentPlaybackTime = playbackTime; } That works ...
1
vote
1answer
75 views

How do I make my app work with the media control buttons on lock screen?

In recent iOS versions apps have some kind of access to the media control buttons on the lock screen, like the Play/Pause button: It looks like the buttons are supposed to work with the ...
1
vote
1answer
98 views

AudioUnits and MPMusicPlayerController

My App is utilizing the AudioUnit functionality to produce short sounds for a metronome application. All is running fine. Now I want to play an MP3 from the iTunes Lib on the Device and I use ...
1
vote
0answers
26 views

Remove iPod player

My application instead of the iPod as it is in the background and sing songs in my application even tell me.. What is the class to do this ?
1
vote
0answers
58 views

Using iPodMusicPlayer

How to make my application to sing instead of the iPod when it's in the background. I think that I need to do my NSURL to MPMediaItem and play with iPodMusicPlayer. How can I do this?
1
vote
0answers
184 views

Why does MPMusicPlayerController call its now playing item changed selector method twice?

I am writing a music playlist editing application for the iPhone. I am subscribing to the MPMusicPlayerController MPMusicPlayerControllerNowPlayingItemDidChangeNotificationand I am ...
1
vote
1answer
470 views

Independent Volume control of AVAudioPlayer and MPMusicPlayerController in iOS App.

Within my application, I am playing downloaded audio using an AVAudioPlayer, while simultaneously playing audio from the user's iPod music library with an MPMusicPlayerController. I need to be able ...
1
vote
0answers
127 views

MPMusicPlayer inaccurate currentPlaybackTime for VBR audio

When I seek to a position in a non-vbr mp3 by setting MPMusicPlayer's currentPlaybackTime property, I'm able to seek accurately. When I seek to the same position with a VBR mp3, it seeks to a further ...
1
vote
1answer
376 views

iPhone App kill my iphone music player?

As soon as I open app it kills my music player. I dont want user to feel such experience. Sometime user don't want to stop their music player while app browsing. For that purpose I will provide ...
1
vote
0answers
107 views

Different Volume settings for Different players

I am implementing a audio based application. In my application I need to play the songs from my internal iPod application and application sounds simultaniously. I used 2 players , one with avaudio ...
1
vote
1answer
227 views

How can I fade-out the sound played by MPMusicPlayerController?

I'd like to fade-out the sound played by MPMusicPlayerController over a particular time period? How can I do this?
1
vote
2answers
216 views

while loop memory problem

The problem with this code is that when the while loop is executing, the memory usage is increasing continuously. I want to know why does this code keeps on increasing memory when its in while loop. ...
1
vote
1answer
465 views

music player in iphone simulator 4.2

I am trying to add music player to my iphone app using the MediaPlayer framework. I dont have a real device with me and want to test it on simulator. But, the simulator doesnt support MPMusicPlayer ...
1
vote
0answers
184 views

memory warning causes iPad's iPod to stop playing

I have an app that allows the user to play their iPod music through my app and provides some handy controls to control the iPod. The problem I am seeing is that, sometimes, then I get a memory ...
1
vote
1answer
190 views

How do I get all songs from the iPhone music library from a specific year?

Hi Stack Overflowers, I'm hoping you might be able to help me. I'm trying to get a collection of all songs in a users iPhone music library from a specific year i.e 2002. I'm then looking to play the ...
1
vote
1answer
428 views

Stop iPod music by NSTimer on background mode

I'm planning to create an application that plays the ipod Music Library, then the app sets a NSTimer that will stop the ipod Music player on a certain time. My question does my timer will still run ...
1
vote
2answers
171 views

How to check if ipod has music files

I am trying to have my app play music from ipod using MPMusicPlayerController but there are devices which do not have music in there ipod library. Can anyone tell me if there is a way to check whether ...
1
vote
2answers
843 views

How to use MPMusicPlayerController with AVAudioPlayer

I am trying to play an in app audio with ipod the code I am using to play the audio file is: Code: [[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error: nil]; ...
1
vote
1answer
868 views

help me pick the right iPhone audio class - MPMoviePlayer vs AVAudioPlayer vs MPMusicPlayer

Does anyone know of a good tutorial on the distinction between the MPMoviePlayer vs AVAudioPlayer vs MPMusicPlayer? I want to play audio from an mp3 file available at an external URL. Ideally it ...
1
vote
1answer
426 views

iPodMusicPlayer doesn't send notifications, if it is created in background

If iPodMusicPlayer is created in background, then I doesn't send notifications about playback state changes. Here is code: - (void)initMusicPlayer { musicPlayer = [MPMusicPlayerController ...
1
vote
1answer
442 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
2answers
14 views

Where Podcast left off using MPMusicPlayerController?

I'm trying to find the last time a podcast was played using MPMusicPlayerController. Using the built in iPod player on iOS, when a podcast is played and then the user changes to a different media ...
0
votes
0answers
9 views

applicationMusicPlayer playbackState is NULL?

In my Cocos2D app I have a pause view where I load a specific button based upon the playbackState of the applicationMusicPlayer. There is an issue though, the applicationMusicPlayer is always NULL. So ...
0
votes
1answer
13 views

How to darken the selected song in MPMusicpalyer using iphone sdk?

I am using ipod library for my applicatio, But the Song Choice is not real intuitive. One thing I’ve noticed is that when you tap on a song, it turns light blue. It’s hard to determine if you tap on ...
0
votes
0answers
23 views

Can I use a themes plist to control the MPMusicPlayerController?

I have recently downloaded a theme for the dreamboard cydia app. This theme makes my iPhone look like it is an iPod classic. One issue I am having is that this theme does not allow for the lock screen ...

1 2 3