I am using MPMusicPlayerController to play music from device with iPodMusicPlayer. And at regular intervals play alerts with AVPlayer. Code goes like this
-(void) duckMusic
{
UInt32 on=1;
AudioSessionSetProperty(kAudioSessionProperty_OtherMixableAudioShouldDuck,sizeof(on),&on);
AudioSessionSetActive(true);
}
-(void) unDuckMusic
{
UInt32 on=0;
AudioSessionSetProperty(kAudioSessionProperty_OtherMixableAudioShouldDuck,sizeof(on),&on);
AudioSessionSetActive(false);
}
I call the first method just before playing the alert and I call the second method after recieving notification AVPlayerItemDidPlayToEndTimeNotification
The problem I am getting is that some times the music does not fade back after alert is completed. With some debugging I have found that the audio session property is being set properly but it is being ignored for some reason.
I have also noticed while testing, that when music does not fade back, if I just pause and play music manually on device it becomes to normal.
How to handle this programmatically?
Edit:
The problem is coming when application is running in background