0.0.2 • Published 3 years ago

auph-node v0.0.2

Weekly downloads
-
License
-
Repository
github
Last release
3 years ago

Auph for NodeJS

Work in progress

  • init, pause, resume, shutdown
  • load, unload
  • play, stop
  • voice params control
  • bus control
  • get state functions

Platforms

  • macOS
  • Windows
  • Linux

Example

const Auph = require("auph-node");

Auph.init();
Auph.resume();

const clap = Auph.load("clap.mp3", false);
const music = Auph.load("music.ogg", false);

Auph.play(clap);
Auph.play(music);

setTimeout(() => {
    Auph.shutdown();
}, 2000);
0.0.2

3 years ago