Is there a solution to setting the system's master volume from within my Swift app?
I read a lot about AudioToolbox and read some source examples in Objective-C. For example, I found this: Setting Mac OS X Volume Programatically after 10.6
But I can't get it working in Swift.
I am missing some example code in https://developer.apple.com/library/mac/documentation/AudioToolbox/Reference/AudioHardwareServicesReference/index.html#//apple_ref/c/func/AudioHardwareServiceGetPropertyData
(Code updated for Swift 4 and later, the Swift 2 and 3 versions can be found in the edit history.)
This is what I got from translating the answers to Change OS X system volume programmatically and Setting Mac OS X volume programmatically after 10.6 (Snow Leopard) to Swift (error checking omitted for brevity):
Required framework:
Get default output device:
Set volume:
Finally, for the sake of completeness, get the volume:
Error checking has been omitted for brevity. Of course one should check the status return values for success or failure in a real application.
Credits go to Set OS X volume in OS X 10.11 using Swift without using the deprecated AudioHardwareServiceSetPropertyData API for using
AudioObjectSetPropertyData()
instead of the deprecatedAudioHardwareServiceSetPropertyData()
.As noamtm mentions in the comments, this works also for getting and setting the left-right balance, by passing
to
AudioObjectPropertyAddress()
.