Get, set and configure the audio devices on macOS
Requires macOS 10.12 or later. macOS 10.13 or earlier needs to download the Swift runtime support libraries.
Using npx
$ npx macos-audio-devices
$ npm install -g macos-audio-devices
$ audio-devices
Usage: audio-devices <command> [options]
Groups:
output Get or set the default output device
input Get or set the default input device
system Get or set the default device for system sounds
volume Get or set the volume of an output device
aggregate Create or delete aggregate audio devices
Commands:
list List the available audio devices
get Get a device by its ID
help Prints help information
$ npm install macos-audio-devices
const audioDevices = require('macos-audio-devices');
const outputDevices = audioDevices.getOutputDevices.sync();
const targetDevice = outputDevices[0];
const defaultDevice = audioDevices.getDefaultOutputDevice.sync();
if (defaultDevice.id !== targetDevice.id) {
setDefaultOutputDevice(targetDevice.id)
}
if (targetDevice.hasVolume) {
setOutputDeviceVolume(targetDevice.id, 0.5); // 50%
}
The unique ID of the device.
The UID of the device for the AVCaptureDevice
API.
The human readable name of the device.
Whether the device is an output device.
Whether the device is an input device.
A number between 0 and 1 representing the volume setting of the device. Only applicable on output devices that support it. It will be undefined otherwise.
The value of this property represents the transport type of the device (USB, PCI, etc).
Can be one of:
avb
aggregate
airplay
autoaggregate
bluetooth
bluetoothle
builtin
displayport
firewire
hdmi
pci
thunderbolt
usb
virtual
unknown
Each method described below is asynchronous, but can be called synchronously, by calling .sync
on it instead. For example:
getDevice(73).then(device => {…}); // async
const device = getDevice.sync(73); // sync
Get all the audio devices.
Get all the output devices.
Get all the input devices.
Get an audio device by its ID.
The unique ID of the device.
Get all the default output device.
Get all the default input device.
Get all the default input device.
Set the default output device.
The unique ID of an output device.
Set the default input device.
The unique ID of an input device.
Set the default input device. Can only be an output device.
The unique ID of an output device.
Get the volume level of an output device that supports it.
Throws an error if the device is not an output device or if it doesn't support volume.
The unique ID of the supported output device.
Set the volume level of an output device that supports it.
Throws an error if the device is not an output device or if it doesn't support volume.
The unique ID of the supported output device.
The volume level to set the device to. Must be between 0 and 1, otherwise and error will be thrown.
createAggregateDevice(name: string, mainDeviceId: number, otherDeviceIds: number[], options: object): Promise<Device>
Create an aggregate device from other existing devices.
Note that aggregate devices do not support volume, so make sure to update the volume on the devices used to create it instead.
Human-readable name for the new device.
The unique ID of the main device.
An array od unique IDs of the rest of the devices. Needs to have at least one.
Whether or not to create a Multi-Output Device.
If this is enabled, all the devices need to be output devices.
Destroy an aggregate device.
The unique ID of an aggregate device.
If you want to use this and need more features or find a bug, please open an issue and I'll do my best to implement.
PRs are always welcome as well 😃