Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
89 views
in Technique[技术] by (71.8m points)

javascript - Checking System Sound Level Through Node?

So you know when you play audio (like opening a YouTube video) and click your system volume settings to see how loud it is? Like this?

enter image description here

I want to do the same with NodeJS, where I run a function and it continuously outputs the sound level, something like this:

let libraryThatGetsSound = require('libraryThatGetsSound');

while(true) {
     console.log(libraryThatGetsSound.soundLevel());
}

This application will run on the desktop itself, not in a browser.

How would I do that?

question from:https://stackoverflow.com/questions/65947292/checking-system-sound-level-through-node

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Have a look at these packages it might help

Although I am not sure, but I think win-audio is either dead or it requires python

**EDIT - For Decibels maybe this will help https://www.npmjs.com/package/decibel-meter


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...