Change Volume on Mac programmatically

后端 未结 2 2101
遥遥无期
遥遥无期 2020-12-19 06:32

I\'m looking for a not applescript way to change the system volume on Mac OS X programmatically. I just couldn\'t find a solution. Anyone any ideas?

相关标签:
2条回答
  • 2020-12-19 07:06

    Take a look at this class:

    https://github.com/InerziaSoft/ISSoundAdditions

    It can change system volume and make use of CoreAudio API.

    An example of usage should look like this:

    [NSSound setSystemVolume:0.5]
    
    0 讨论(0)
  • 2020-12-19 07:19

    In case anybody is still interested in this topic: I have adapted the great ISSoundAdditions to Swift 5 and have also made its design a bit cleaner by declaring a public interface (NSSound.systemVolume)through which you can super easily manage the system sound volume through getting and setting properties (NSSound.systemVolume and NSSound.systemVolumeIsMuted). Check it out: https://github.com/mabi99/NSSound_SystemVolumeExtension

    0 讨论(0)
提交回复
热议问题