I have looked but can't find a way to access the Audio Output Routes so i can detect if the audio is coming out via AirPlay.

This is what i found in the Documentation for iOS 5.0

kAudioSessionOutputRoute_AirPlay

Discussion

These strings are used as values for the kAudioSession_AudioRouteKey_Type key for the dictionary associated with the kAudioSession_AudioRouteKey_Outputs array.

I can't find a way to get access to the kAudioSession_AudioRouteKey_Outputs array.

Thanks

link|improve this question

50% accept rate
feedback

1 Answer

CFArray *destinations;
CFNumber *currentDest;

// Get the output destination list
AudioSessionGetProperty(kAudioSessionProperty_OutputDestinations, nil, destinations);

// Get the index of the current destination (in the list above)
AudioSessionGetProperty(kAudioSessionProperty_OutputDestination, nil, currentDest);

Im not too sure of the exact syntax, so you'll have to mess around with it a bit, but you should get the general idea.

link|improve this answer
kAudioSessionProperty_OutputDestinations >A CFArrayRef object containing details on the available audio output destinations in a USB audio accessory attached through the iPad camera connection kit. Each element of the array contains a CFDictionaryRef object with the keys and corresponding values described in “USB Accessory Audio Destination Dictionary Keys.” I can't use this because its only used for USB connected devices. – Bassem Dec 5 '11 at 0:21
I figured out how to get the audio out put of the device but can't answer my own question just yet because i'm a noob and don't have 100+ rep. I will post the answer in 5 hours :) – Bassem Dec 5 '11 at 0:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.