Giter VIP home page Giter VIP logo

jigger's Introduction

jigger

a generator for audio signals that combines your synth function with an envelope and timing. For use with jsynth, nvelope, and jsynth-sync. Look em up on NPM.

usage

Set a generator with 3 params:

  • time
  • a DSP function
  • envelope object

Then if your master DSP function, ask the generator to do its thing. It will generate your signal on time, and then flush the whole thing when its time has passed. See below rly.

example

To run the example, serve up the public dir with a static file server like "ecstatic" on NPM. entry.js is a pre borwserified bundle, so you can mess with that.

context = (AudioContext) ? AudioContext : webkitAudioContext
master = new context
SAMPLERATE = samplerate = master.sampleRate
jsynth = require('jsynth')
nvelope = require('nvelope')
sync = require('jsynth-sync')
oz = require('oscillators')
jdelay = require('jdelay')
amod = require('amod')
chronotrigger  = require('./')
generator = new chronotrigger()

music = function(time, sample, input){
  timer.tick.call(timer, time)
  return generator.tick(time, sample, input)
}

timer = sync(72, master.sampleRate)

gong = timer.on(1/4, function(_t, b){
  var attack = [[0,0],[2,1],[1,1]]
  var release= [[1,1],[0,0], [1,0]]
  var curves = [attack, release]
  var durs = [.01, .06]
  var mods = {curves: curves, durations: durs}
  var synth = function(t,s,i){
    return (oz.triangle(t, 1200) + oz.saw(t, Math.random())) * (1 + (b%2%4))
  }
  var gen = generator.set(_t, synth, mods)
})

dsp = function(t, s, i){
	time = t
  return music(t, s, i)
}
synth = jsynth(master, music)
synth.connect(master.destination)

jigger's People

Contributors

nhq avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.