@tauubyebye/win-audio
v2.0.4
Published
Get, Set and Watch Speaker/Microphone Volume on Windows
Downloads
1
Maintainers
Readme
win-audio
Get, Set and Watch Speaker/Microphone Volume on Windows
Install
npm i --save win-audio
Requirements
node-gyp to build audio-napi.cc
Version 2.0.0
This version requires N-API, and node version >= 8.6.0
Module
const win = require('win-audio');
// manage speaker volume
const speaker = win.speaker;
// manage mic volume
const microphone = win.mic;
Usage
const audio = require('win-audio').speaker;
audio.polling(200);
audio.events.on('change', (volume) => {
console.log("old %d%% -> new %d%%", volume.old, volume.new);
});
audio.events.on('toggle', (status) => {
console.log("muted: %s -> %s", status.old, status.new);
});
audio.set(40);
audio.increase(20);
audio.decrease(10);
audio.mute();
Functions
polling(interval: int = 500)
- interval: milliseconds for check volume changes.
get()
Return current percentage of volume.
isMuted()
Return if speaker/mic is muted.
set(value: int)
Set a new master volume.
- value: percentage of new volume. [0-100]
increase(value: int)
Increase current volume of value %.
- value: percentage. [0-100]
decrease(value: int)
Decrease current volume of value %.
- value: percentage. [0-100]
mute()
Mute volume.
unmute()
Unmute volume.
toggle()
Mute/Unmute volume according to current status.
Events
change
Called when volume is changed.
toggle
Called when volume is muted/unmuted.
Thanks to
Author
Francesco Saverio Cannizzaro