npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

dilla

v1.8.4

Published

Schedule looped playback of Web Audio notes at 96 ticks per beat

Downloads

103

Readme

Dilla

npm npm GitHub stars GitHub forks

Travis branch Code Climate Code Climate David dependencies David devDependencies

Schedule looped playback of Web Audio notes at 96 ticks per beat

Based on ditty and bopper. Named after one of the greatest to ever touch a drum machine.

Install

$ npm install --save dilla

Usage

var Dilla = require('dilla');
var audioContext = new AudioContext();
var dilla = new Dilla(audioContext, options);

Options and defaults

{
  "tempo": 120,
  "beatsPerBar": 4,
  "loopLength": 2
}

Note that loopLength is measured in bars, i.e. the default loop length above is 8 beats.

Example

The "hello world" of audio libraries, the simple metronome: check out the demo or code.

var high = {
  'position': '*.1.01',
  'freq': 440,
  'duration': 15
};
var low = { 'freq': 330, 'duration': 15 };

dilla.set('metronome', [
  high,
  ['*.>1.01', low]
]);

var oscillator, gainNode;
dilla.on('step', function (step) {
  if (step.event === 'start') {
    oscillator = step.context.createOscillator();
    gainNode = step.context.createGain();
    oscillator.connect(gainNode);
    gainNode.connect(step.context.destination);
    oscillator.frequency.value = step.args.freq;
    gainNode.gain.setValueAtTime(1, step.time);
    oscillator.start(step.time);
  }
  else if (step.event === 'stop' && oscillator) {
    gainNode.gain.setValueAtTime(1, step.time);
    gainNode.gain.linearRampToValueAtTime(0, step.time + 0.1);
    oscillator.stop(step.time + 0.1);
    oscillator = null;
    gainNode = null;
  }
});

dilla.start();

Tutorials

API

Playback controls

  • dilla.start() start playback at current position
  • dilla.pause() stop playback at current position
  • dilla.stop() stop playback and set position to start of loop

Scheduling

  • dilla.set(id, notes) schedule playback of array of notes on channel with id, clearing any previously scheduled notes on same channel. A note can be defined as a note object (must contain position) or an array with position at index 0 and params in an object at index 1 (see metronome example above)
  • dilla.get(id) returns an array of notes scheduled on channel with id
  • dilla.channels() returns an array of all channel ids
  • dilla.clear(id) clear notes for channel
  • dilla.clear() clear notes for all channels

Position and options

  • dilla.position returns current position string, "BAR.BEAT.TICK"
  • dilla.setPosition(position) set position to "BAR.BEAT.TICK"
  • dilla.setTempo(bpm) set playback tempo, default 120
  • dilla.setBeatsPerBar(beats) change playback time signature, default 4
  • dilla.setLoopLength(bars) change bars per loop, default 2

Objects

Position

  • A string in the format BAR.BEAT.TICK
  • Where each part is a (1-based index) number
  • Tick values under 10 are padded with a leading zero
  • Can contain expressions which are expanded by dilla.set()

Note

  • An object that must define position
  • Can define duration in ticks (optional) or any other other params, like frequency or playback rate

Events

tick

Fires when the bar, beat or tick value of dilla.position() is updated.

dilla.on('tick', function (tick) {
  console.log(tick.position) // "1.1.01"
});

step

Fires when a scheduled note should start or stop. For notes with undefined or falsy duration value (i.e. oneshots), no stop step event is triggered.

dilla.on('step', function (step) {
  console.log(step.event); // "start" or "stop"
  console.log(step.time); // offset in seconds
  console.log(step.args); // note data originally passed to set()
});

Develop

  • make test
  • make coverage
  • make publish

Changelog

  • 0.1.0
    • Initial release, ported from bap project
  • 1.0.0
    • Improved release for metronome example oscillator
    • Warn in console when events provided to dilla.set() is out of bounds
  • 1.0.1
    • FIXED: dilla.getClockPositionFromPosition() returns incorrect value for ticks #4
    • FIXED: step.position is incorrect #1
  • 1.0.2
    • FIXED: dilla.getPositionWithOffset() returns incorrect position when offset is falsy #5
    • FIXED: "stop" fires for events with falsy duration (oneshots) #3
  • 1.1.0
    • NEW: Use expressions to insert repeating events #2
    • FIXED: "Out of bounds" warning does not say which channel #6
  • 1.1.1
    • FIXED: Ambiguous use of the word "event" #8
  • 1.2.0
    • CHANGED: Note passed to dilla.set() can be an array with position at index 0, or a note object, and will be merged into a note object
    • NEW: Added lots of unit tests
  • 1.3.0
  • 1.3.1
    • FIXED: Minifying dilla function names breaks everything
  • 1.3.2
    • FIXED: "step" event stops triggering when tab is put to background #14
    • FIXED: Metronome example is leaking, never stops oscillator #15
  • 1.3.3
  • 1.3.4
    • DOCS: Fix typos
  • 1.3.5
  • 1.4.0
    • ADDED: Define options.expandNote(note) to transform note after expression expansion
    • CHANGED: Use local version of Ditty with longer lookahead
    • CHANGED: Use dilla-expressions v1.2, with greater than and less than operators
  • 1.5.0
    • CHANGED: Use dilla-expressions v2.0, with 25-1500 times better performance
    • FIXED: Use prefixed AudioContext in Safari
  • 1.6.0
    • CHANGED: Reduce intensity of keepalive pings to improve CPU performance
    • CHANGED: Memoize expensive methods
  • 1.7.0
    • CHANGED: Use forked version of Bopper, with less object creation
  • 1.8.0
    • CHANGED: Memoize inner part of set method, for better performance and less allocation
    • CHANGED: Use meeemo 1.1.1, which uses Map instead of plain object when possible
    • CHANGED: Refactor ditty to avoid deoptimization of inner loop bodies
  • 1.8.1
    • FIXED: Drops notes when beatsPerBar is above 9 #22
  • 1.8.2
    • FIXED: Changing beats per bar leads to confusion in the order of the steps #23
  • 1.8.3
    • FIXED: Correct memoization key for dilla.getClockPositionFromPosition #23
  • 1.8.4 (2017-12-14)
    • FIXED: setBeatsPerBar not working #26

License

MIT © Adam Renklint