1.1.0 • Published 8 years ago

triolet.bundle v1.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

triolet.bundle

NPM Version License

All components in the main thread. This architecture works on the browser and the Node.js

triolet.bundle

Installation

$ npm install triolet.bundle

Example

in the main thread

const triolet = require("triolet.bundle")();
const Driver = require("pico.driver.webaudio");
const API = require("./api");
const DSP = require("./dsp");

let audioContext = new AudioContext();

triolet.compose({ api: new API(), dsp: new DSP(), driver: new Driver() });
triolet.setup({ context: audioContext, bufferLength: 1024 });

triolet.start();

API

Triolet

  • constructor()

Instance attributes

  • api: TrioletAPI
  • dsp: TrioletDSP
  • driver: pico.driver
  • sampleRate: number (implicit readonly)
  • bufferLength: number (implicit readonly)
  • state: string (implicit readonly)

Instance methods

  • compose(spec: object): self
  • setup(opts: object): self
  • start(): self
  • stop(): self
  • sendToAPI(data: any): void
  • sendToDSP(data: any): void

Interfaces

interface TrioletAPI {
  optional setup(opts: object) => void;
  optional start() => void;
  optional stop() => void;
  process(inNumSamples: number) => void;
}
interface TrioletDSP {
  optional setup(opts: object) => void;
  optional start() => void;
  optional stop() => void;
  process(bufL: Float32Array, bufR: Float32Array) => void;
}

Audio Drivers

License

MIT

1.1.0

8 years ago

1.0.0

8 years ago

0.8.0

8 years ago

0.7.0

8 years ago

0.6.0

8 years ago

0.5.0

8 years ago

0.4.0

8 years ago

0.3.0

8 years ago