Volume Change on Mac Programmatically

I am looking for a non-conventional way to change the volume of a system in Mac OS X programmatically. I just could not find a solution. Any ideas?

+5
source share
1 answer

Take a look at this class:

https://github.com/InerziaSoft/ISSoundAdditions

It can modify the system volume and use the CoreAudio API.

A usage example should look like this:

[NSSound setSystemVolume:0.5]
+7
source

All Articles