Created
April 8, 2015 15:07
-
-
Save robotconscience/490ee50d8ad75b47ea1f to your computer and use it in GitHub Desktop.
Set CoreAudio ouput device for your app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// change this to a recognizeable piece of your audio output | |
// e.g. setAudioOutput("AirPlay"); or setAudioOutput("VoilaDevice"); | |
// returns true on success / false on beef | |
// as always, all thanks to StackOverflow for the amazing | |
// enumerate devices script: | |
// http://stackoverflow.com/questions/1983984/how-to-get-audio-device-uid-to-pass-into-nssounds-setplaybackdeviceidentifier | |
// Note: if you change "kAudioDevicePropertyScopeOutput" to "kAudioObjectPropertyScopeGlobal" in line 62, | |
// you can set the output for your whole system... | |
bool setAudioOutput( string targetDevice ){ | |
AudioObjectPropertyAddress propertyAddress; | |
AudioObjectID *deviceIDs; | |
UInt32 propertySize; | |
NSInteger numDevices; | |
propertyAddress.mSelector = kAudioHardwarePropertyDevices; | |
propertyAddress.mScope = kAudioObjectPropertyScopeGlobal; | |
propertyAddress.mElement = kAudioObjectPropertyElementMaster; | |
// enumerate all current/valid devices | |
if (AudioObjectGetPropertyDataSize(kAudioObjectSystemObject, &propertyAddress, 0, NULL, &propertySize) == noErr) { | |
numDevices = propertySize / sizeof(AudioDeviceID); | |
deviceIDs = (AudioDeviceID *)calloc(numDevices, sizeof(AudioDeviceID)); | |
if (AudioObjectGetPropertyData(kAudioObjectSystemObject, &propertyAddress, 0, NULL, &propertySize, deviceIDs) == noErr) { | |
AudioObjectPropertyAddress deviceAddress; | |
char deviceName[64]; | |
char manufacturerName[64]; | |
for (NSInteger idx=0; idx<numDevices; idx++) { | |
propertySize = sizeof(deviceName); | |
deviceAddress.mSelector = kAudioDevicePropertyDeviceName; | |
deviceAddress.mScope = kAudioObjectPropertyScopeGlobal; | |
deviceAddress.mElement = kAudioObjectPropertyElementMaster; | |
// get the deets! | |
if (AudioObjectGetPropertyData(deviceIDs[idx], &deviceAddress, 0, NULL, &propertySize, deviceName) == noErr) { | |
propertySize = sizeof(manufacturerName); | |
deviceAddress.mSelector = kAudioDevicePropertyDeviceManufacturer; | |
deviceAddress.mScope = kAudioObjectPropertyScopeGlobal; | |
deviceAddress.mElement = kAudioObjectPropertyElementMaster; | |
if (AudioObjectGetPropertyData(deviceIDs[idx], &deviceAddress, 0, NULL, &propertySize, manufacturerName) == noErr) { | |
CFStringRef uidString; | |
propertySize = sizeof(uidString); | |
deviceAddress.mSelector = kAudioDevicePropertyDeviceUID; | |
deviceAddress.mScope = kAudioObjectPropertyScopeGlobal; | |
deviceAddress.mElement = kAudioObjectPropertyElementMaster; | |
if (AudioObjectGetPropertyData(deviceIDs[idx], &deviceAddress, 0, NULL, &propertySize, &uidString) == noErr) { | |
// comment this out if you don't want to log everything | |
NSLog(@"device %s by %s id %@", deviceName, manufacturerName, uidString); | |
CFRelease(uidString); | |
} | |
string name(deviceName); | |
if ( name.find( targetDevice ) != string::npos ){ | |
propertyAddress.mSelector = kAudioHardwarePropertyDefaultOutputDevice; | |
propertyAddress.mScope = kAudioDevicePropertyScopeOutput; | |
propertyAddress.mElement = kAudioObjectPropertyElementMaster; | |
return AudioObjectSetPropertyData(kAudioObjectSystemObject, &propertyAddress, 0, NULL, sizeof(AudioDeviceID), &deviceIDs[idx]) == noErr; | |
} | |
} | |
} | |
} | |
} | |
free(deviceIDs); | |
} | |
return false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment