I have read audio session cookbook, all audio session guides on apple website and several other internet websites but they all are very confusing and complicated. There is no good tutorial and no video on youtube. So I really need help for audio sessions. Any website or tutorial with sample code will be great.

I have a .xib which has 5 round rectangle buttons and 5 IBActions (one for each). Here is what I am trying to do.

When my app launches it should start with AmbientSound category so if ipod music is playing. Then it check whether ipod music is playing. If yes, it should change category to playback. If not then it should change category to soloAmbient. When a user tap a button and ipod music is playing then it should use duck property and my app audio should be louder than any other audio.

Is it the correct way of doing this?

  - (void)viewDidLoad {

//initialize AudioSession
AVAudioSession *session = [AVAudioSession sharedInstance];

NSError *setCategoryError = nil;

//initially AmbientSOund Category 

[session setCategory: AVAudioSessionCategoryAmbient error: &setCategoryError]; 

if (setCategoryError) 
{
    NSLog(@"setCategory Error occured");
}

  NSError *activationError = nil;
[session setActive: YES error: &activationError];

 // check ipod music is playing or not

   UInt32 otherAudioIsPlaying;                                 

UInt32 propertySize = sizeof (otherAudioIsPlaying);

 **//following line give me error  "kAudioSessionProperty_OtherAudioIsPlaying is undeclared. How to fix it**
AudioSessionGetProperty(kAudioSessionProperty_OtherAudioIsPlaying, &propertySize, &otherAudioIsPlaying );


if (otherAudioIsPlaying) //ipod music is playing
{                                    
    NSLog(@"ipod music playing, Setting Playback Category "); //sound is essential and primary functionality but mixes with other
    //using playback category- by educational app example from HIG guide

    [session setCategory: AVAudioSessionCategoryPlayback error: nil];

} 

else // ipod music is not playing
{
    NSLog(@"ipod music not playing, Setting SoloAmbient Category ");

    [session setCategory: AVAudioSessionCategorySoloAmbient error: nil];

}


[super viewDidLoad];
}  //viewDidLoad  Closed



-(IBAction) startCharacter1
{ 

//------AVAudio player code------------------------------


// Get the file path to the song to play.
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"song1"
                                                     ofType:@"mp3"];


// Convert the file path to a URL.
NSURL *fileURL = [[NSURL alloc] initFileURLWithPath:filePath];



NSError *error;
AVAudioPlayer *p= [[AVAudioPlayer alloc]
                   initWithContentsOfURL:fileURL error:&error];

[fileURL release];
self.player=p;
[p release];

//playback category -  set the mixing property 

OSStatus propertySetError = 0;
UInt32 allowMixing = true;
  //following line give me error  "kAudioSessionProperty_OverrideCategoryMixWithOthers is undeclared. How to fix it
propertySetError = AudioSessionSetProperty (kAudioSessionProperty_OverrideCategoryMixWithOthers, sizeof (allowMixing), &allowMixing);

// set duck property


 //following line give me error  "kAudioSessionProperty_OtherMixableAudioShouldDuck is undeclared. How to fix it
propertySetError = AudioSessionSetProperty(kAudioSessionProperty_OtherMixableAudioShouldDuck, sizeof(allowMixing), &allowMixing);



//Activate AudioSession

AVAudioSession *session = [AVAudioSession sharedInstance];

[session setActive: YES error: nil];



[player prepareToPlay];
[player play];
[player setDelegate:self];


//------AVAudio player code------------------------------





}



-(void)audioPlayerDidFinishPlaying:(AVAudioPlayer *)player successfully:(BOOL) completed
{
if(completed==YES)
{

    //deactivate audio session
    AVAudioSession *session = [AVAudioSession sharedInstance];

    [session setActive: NO error: nil];


}


}

-(void)audioPlayerDecodeErrorDidOccur:(AVAudioPlayer *)player error:(NSError *)error
{

}
-(void)audioPlayerBeginInterruption:(AVAudioPlayer *)player
{
//deactivate audio session & stop player upon interruption like incoming phone call
AVAudioSession *session = [AVAudioSession sharedInstance];

[session setActive: NO error: nil];

}


 -(void)audioPlayerEndInterruption:(AVAudioPlayer *)player
 {
    /* I am not resuming audio as audio lengths are 5 seconds so interruption will generally take 4-5 seconds.Audio will stop by that time. Another reason is that I am playing audio with animation  (image frames) so I need to resume animation from the same frame where it left after interruption. Even If I resume animation (image frame ) and audio ,I am pretty sure it will not start properly as it will take few seconds to start audio and song words will not match with correct animation image frame. User need to tap again to start audio again with animation.

 */

// **Is it OK to leave audioPlayerEndInterruption without any command? Will Apple reject it due to this reason?**

}

Again, my main question is "Is it the correct way of accomplishing following task?

"When my app launches it should start with AmbientSound category so if ipod music is playing. Then it check whether ipod music is playing. If yes, it should change category to playback. If not then it should change category to soloAmbient. When a user tap a button and ipod music is playing then it should use duck property and my app audio should be louder than any other audio. "

Can you please edit the code a little bit (if there is a mistake) or add any necessary code statement that I am missing in this code or change the order of statements if they are not written at correct place?

I couldn't sample code (sample project) that perform similar task and I am a beginner. I have spent 2 days on this and read almost everything on internet and googled all possible keywords related to audio session but no success. Please help.

Many many thanks in advance.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.