Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to have the device route to both the bluetooth speakers and the built in speakers at the same time? i have a code snippet where i'm creating a multiroute category and sending player1 to go to the left built in speaker.

since the bluetooth port does not seem to be avail when the view loads, i grab it on the route change and assign player2 to play out the bt. unfortunately this is not working - both player1 and player2 go to the built in speaker.

any help is appreciated.

- (void)viewDidLoad
{
    [super viewDidLoad];
    AVAudioSession *session = [AVAudioSession sharedInstance];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleRouteChange:) name:AVAudioSessionRouteChangeNotification object:session];
    NSError *err = nil;
    [session setCategory:AVAudioSessionCategoryMultiRoute error:&err];
    [session setActive:YES error:&err];
    AVAudioSessionRouteDescription *route = [session currentRoute];
    NSArray *outputs = [route outputs];
    NSString *soundFilePath = [[NSBundle mainBundle] pathForResource:@"gotospeaker1" ofType:@"wav"];
    NSURL *soundFileURL = [NSURL fileURLWithPath:soundFilePath];
    self.player1 = [[AVAudioPlayer alloc] initWithContentsOfURL:soundFileURL error:nil];

    soundFilePath = [[NSBundle mainBundle] pathForResource:@"gotobluetoothspeaker1" ofType:@"mp3"];
    soundFileURL = [NSURL fileURLWithPath:soundFilePath];
    self.player2 = [[AVAudioPlayer alloc] initWithContentsOfURL:soundFileURL error:nil];

    AVAudioSessionChannelDescription *desiredChannel1 = [[[outputs objectAtIndex:0] channels] objectAtIndex:0];
    NSArray *channelDescription = [NSArray arrayWithObjects:desiredChannel1,nil];
    self.player1.channelAssignments = channelDescription;
}

- (void)handleRouteChange:(NSNotification*)notification
{
    NSArray *outputs = [[notification.userInfo valueForKey:AVAudioSessionRouteChangePreviousRouteKey] outputs];
    AVAudioSessionChannelDescription *desiredChannel = [[[outputs objectAtIndex:0] channels] objectAtIndex:0];
    NSArray *channelDescription = [NSArray arrayWithObject:desiredChannel];
    self.player2.channelAssignments = channelDescription;
}

- (IBAction)startPressed:(id)sender {
    [self.player1 play];
    [self.player2 play];
}
share|improve this question

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.