Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hardillb/audio-level
A node module to report average audio level at a configurable interval
https://github.com/hardillb/audio-level
Last synced: about 2 months ago
JSON representation
A node module to report average audio level at a configurable interval
- Host: GitHub
- URL: https://github.com/hardillb/audio-level
- Owner: hardillb
- License: apache-2.0
- Created: 2013-11-09T20:12:48.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-09T22:41:24.000Z (about 11 years ago)
- Last Synced: 2024-10-13T16:11:37.734Z (3 months ago)
- Language: C++
- Homepage:
- Size: 152 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
audio-level
===========A node module to report average audio level at a configurable interval (defaulting to once per second)
Example
var audio-level = require('audio-level');
audio-level.start(function(level) {
console.log(level + "db");
});
setTimeout(audio-level.stop,5000);