loudness-http

0.1.0 • Public • Published

node-loudness

A node.js library to control the systems output volume

Usage

The library currently has support for four simple async functions. The volume is specified as an integer between 0 and 100 (inc.).

var loudness = require('loudness');
 
loudness.setVolume(45, function (err) {
    // Done
});
 
loudness.getVolume(function (err, vol) {
    // vol = 45
});
 
loudness.setMuted(false, function (err) {
    // Done
});
 
loudness.getMuted(function (err, mute) {
    // mute = false
});

OS Support

Currently Mac OS X and Linux (ALSA) is supported, please send a pull requests if you are using another setup.

Usage by http requets

Execute app by:

node app.js

Make petitions to configure your volume level like:

http://localhost:8080/set/10 

This sets to 10% the volume level.

To toggle mute state, you make a petition like:

http://localhost:8080/toggle

Readme

Keywords

none

Package Sidebar

Install

npm i loudness-http

Weekly Downloads

9

Version

0.1.0

License

none

Last publish

Collaborators

  • gtrrz-victor