Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/alemangui/pizzicato

Library to simplify the way you create and manipulate sounds with the Web Audio API.
https://github.com/alemangui/pizzicato

audio effects javascript sound

Last synced: about 2 months ago
JSON representation

Library to simplify the way you create and manipulate sounds with the Web Audio API.

Lists

README

        

Pizzicato.js

[![Build Status](https://travis-ci.org/alemangui/pizzicato.svg?branch=master)](https://travis-ci.org/alemangui/pizzicato) [![npm](https://img.shields.io/npm/v/pizzicato.svg)](https://www.npmjs.com/package/pizzicato) [![Bower](https://img.shields.io/bower/v/pizzicato.svg)](https://bower.io/) [![CDNJS](https://img.shields.io/cdnjs/v/pizzicato.svg)](https://cdnjs.com/libraries/pizzicato)

## A Web Audio library

Pizzicato aims to simplify the way you create and manipulate sounds via the Web Audio API. Take a look at the [demo site here](https://alemangui.github.io/pizzicato/).

## Table of contents
- [Get Pizzicato](#get-pizzicato)
- [npm](#npm)
- [bower](#bower)
- [cdnjs](#cdnjs)
- [Installing and testing](#installing-and-testing)
- [TL;DR: How does it work?](#tldr)
- [Create a sound](#create-a-sound)
- [Sounds from a wave](#sounds-from-a-wave)
- [Sounds from a file](#sounds-from-a-file)
- [Sounds from input](#sounds-from-input)
- [Sounds from a function](#sounds-from-a-function)
- [Using sounds](#using-sounds)
- [play()](#sounds-play)
- [pause()](#sounds-pause)
- [stop()](#sounds-stop)
- [clone()](#sounds-clone)
- [addEffect()](#sounds-add-effect)
- [removeEffect()](#sounds-remove-effect)
- [volume](#sounds-volume)
- [attack](#sounds-attack)
- [release](#sounds-release)
- [frequency](#sounds-frequency)
- [Events](#sounds-events)
- [play](#sounds-events-play)
- [pause](#sounds-events-pause)
- [stop](#sounds-events-stop)
- [end](#sounds-events-end)
- [Connecting sounds to AudioNodes](#sounds-connect)
- [Grouping sounds](#groups)
- [Create a group](#create-a-group)
- [addSound()](#group-add-sound)
- [removeSound()](#group-remove-sound)
- [addEffect()](#group-add-effect)
- [removeEffect()](#group-remove-effect)
- [play()](#group-play)
- [pause()](#group-pause)
- [stop()](#group-stop)
- [volume](#group-volume)
- [Effects](#effects)
- [Delay](#delay)
- [Ping Pong Delay](#pingpongdelay)
- [Dub Delay](#dubdelay)
- [Distortion](#distortion)
- [Quadrafuzz](#quadrafuzz)
- [Flanger](#flanger)
- [Compressor](#compressor)
- [Low-pass filter](#low-pass-filter)
- [High-pass filter](#high-pass-filter)
- [Stereo Panner](#stereo-panner)
- [Convolver](#convolver)
- [Reverb](#reverb)
- [Ring Modulator](#ring-modulator)
- [Tremolo](#tremolo)
- [Connecting effects to and from AudioNodes](#effects-connect)
- [Advanced](#advanced)
- [Accessing the audio context](#accessing-the-context)
- [Using Pizzicato objects in a web audio graph](#using-graph)
- [General volume](#general-volume)
- [Memory management](#memory-management)
- [Support](#support)
- [Browsers](#browsers)
- [Audio formats](#audio-formats)

## Get Pizzicato

### npm

```
npm install pizzicato
```

### bower

```
bower install pizzicato
```

### cdnjs

Full source code:
```html

```

Minified:
```html

```

### Installing and testing

*Ensure you have gulp installed:* ```npm install -g gulp```.

Checkout the project and install dependencies with :
```
npm install
```

Run tests with:
```
npm run test
```

By default, Firefox is used for local testing. If you'd like to use Chrome you can use the setting active in TravisCI. To do so, go to ```karma.conf.js```, line 5, and change the browsers array to :

```
browsers: ['Chrome_travis_ci'],
```

Build without tests with:
```npm run build``` or ```npm run watch```

## TL;DR: How does it work?
Include Pizzicato in your site
```html

```

Create a sound
```javascript
var sawtoothWave = new Pizzicato.Sound({
source: 'wave',
options: {
type: 'sawtooth'
}
});
```

Add effects
```javascript
var delay = new Pizzicato.Effects.Delay();
sawtoothWave.addEffect(delay);
```

Play it!
```javascript
sawtoothWave.play();
```

## Create a sound
To create a new sound, use the ```Pizzicato.Sound``` constructor, which takes an object with the sound's ```description``` as argument and a callback that will be executed when the sound is ready to be used. If an error occurs, the callback will be called with the error as a parameter.
```javascript
var sound = new Pizzicato.Sound(Object description, [Function callback]);
```
For example:
```javascript
var click = new Pizzicato.Sound({ source: 'wave' }, function(error) {
if (!error)
console.log('Sound ready to use!');
});
```

Typically, the ```description``` object contains a string ```source``` and an object ```options```. The ```options``` object varies depending on the source of the sound being created.

For example, this objects describes a sine waveform with a frequency of 440:
```javascript
{
source: 'wave',
options: {
type: 'sine',
frequency: 440
}
}
```

Sounds can be created from a variety of sources.

### Sounds from a wave ([example](https://alemangui.github.io/pizzicato/#sound-from-waveform))
To create a sound from an oscillator with a certain waveform, use the ```source: wave``` in your description. Additionally, the following optional parameters are possible inside the ```options``` object:
* ```type``` _(Optional; ```sine```, ```square```, ```triangle``` or ```sawtooth```, defaults to ```sine```)_: Specifies the type of waveform.
* ```frequency``` _(Optional; defaults to 440)_: Indicates the frequency of the wave (i.e., a 440 value will yield an A note).
* ```volume``` _(Optional; min: 0, max: 1, defaults to 1)_: Loudness of the sound.
* ```release``` _(Optional; defaults to 0.4)_: Value in seconds that indicates the fade-out time when the sound is stopped.
* ```attack``` _(Optional; defaults to 0.4)_: Value in seconds that indicates the fade-in time when the sound is played.
* ```detached``` _(Optional; defaults to false)_: If true, the sound will not be connected to the context's destination, and thus, will not be audible.

```javascript
var sound = new Pizzicato.Sound({
source: 'wave',
options: { type: 'sawtooth', frequency: 440 }
});
```

Creating a Pizzicato Sound with an empty constructor will create a sound with a sine wave and a frequency of 440.

```javascript
var sound = new Pizzicato.Sound();
```

### Sounds from a file ([example](https://alemangui.github.io/pizzicato/#sound-from-file))
In order to load a sound from a file, include the ```source: file``` in your description. Additionally, the following parameters are possible inside the ```options``` object:
* ```path``` _(Mandatory; string or array of strings)_: Specifies the path of the sound file. It is also possible to have an array of paths to fallback on. Pizzicato will attempt to load the paths in order, passing on to the next one in case of failure.
* ```loop``` _(Optional; boolean, defaults to false)_: If set, the file will start playing again after the end.
* ```volume``` _(Optional; min: 0, max: 1, defaults to 1)_: Loudness of the sound.
* ```release``` _(Optional; defaults to 0)_: Value in seconds that indicates the fade-out time once the sound is stopped.
* ```attack``` _(Optional; defaults to 0.4)_: Value in seconds that indicates the fade-in time when the sound is played.
* ```detached``` _(Optional; defaults to false)_: If true, the sound will not be connected to the context's destination, and thus, will not be audible.

```javascript
var sound = new Pizzicato.Sound({
source: 'file',
options: { path: './audio/sound.wav' }
}, function() {
console.log('sound file loaded!');
});
```
It is possible to pass several paths to fallback in case of error:
```javascript
var sound = new Pizzicato.Sound({
source: 'file',
options: { path: ['./audio/sound-special-format.wav', './audio/sound.wav'] }
}, function() {
console.log('sound file loaded!');
});
```

Alternatively, you can also simply pass a string to the constructor with the path of the sound file.
```
var sound = new Pizzicato.Sound('./audio/sound.wav', function() {...});
```
Check the [supported audio files](#audio-formats) that can be played with Pizzicato.

### Sounds from the user input ([example](https://alemangui.github.io/pizzicato/#sound-from-input))
It is also possible to use the sound input from the computer. This is usually the microphone, but it could also be a line-in input. To use this, add ```source: input``` in your description. The following optional parameters are possible inside ```options``` object:
* ```volume``` _(Optional; min: 0, max: 1, defaults to 1)_: Loudness of the sound.
* ```release``` _(Optional; defaults to 0)_: Value in seconds that indicates the fade-out time once the sound is stopped.
* ```attack``` _(Optional; defaults to 0.4)_: Value in seconds that indicates the fade-in time when the sound is played.
* ```detached``` _(Optional; defaults to false)_: If true, the sound will not be connected to the context's destination, and thus, will not be audible.

```javascript
var voice = new Pizzicato.Sound({
source: 'input',
options: { volume: 0.8 }
});
```

### Sounds from a function ([example](https://alemangui.github.io/pizzicato/#sound-from-function))
For more creative freedom, Pizzicato also allows direct audio processing. Sounds can be created from a Javascript function by including ```source: script``` in the description. The following parameters are possible in the ```options``` object:
* ```audioFunction``` _(Mandatory; function())_: Function that will be called with the audio processing event.
* ```bufferSize``` _(Optional; number - must be a power of 2.)_: This value controls how many sample frames will be processed at each audio process event. Lower values will result in lower latency, higher values help prevent glitches.
* ```volume``` _(Optional; min: 0, max: 1, defaults to 1)_: Loudness of the sound.
* ```release``` _(Optional; defaults to 0)_: Value in seconds that indicates the fade-out time once the sound is stopped.
* ```attack``` _(Optional; defaults to 0.4)_: Value in seconds that indicates the fade-in time when the sound is played.
* ```detached``` _(Optional; defaults to false)_: If true, the sound will not be connected to the context's destination, and thus, will not be audible.

For example:
```javascript
var whiteNoise = Pizzicato.Sound({
source: 'script',
options: {
audioFunction: function(e) {
var output = e.outputBuffer.getChannelData(0);
for (var i = 0; i < e.outputBuffer.length; i++)
output[i] = Math.random();
}
}
});
```

## Using sounds

### Play ([example](https://alemangui.github.io/pizzicato/#sound-from-waveform))

You can play a sound by calling it's ```play``` function. It takes two optional parameters:

* ```when``` _(number, defaults to 0)_: Time in seconds to wait before playing the sound.
* ```offset``` _(number, defaults to 0)_: Time in seconds where the sound will start.

For example, the following code will wait two seconds, then play a sound starting from position 00:04:

```javascript
sound.play(2, 4);
```

### Pause

You can pause a sound by calling it's ```pause``` function. Next time the sound is played, it will continue from where it left off.

```javascript
sound.pause();
```

### Stop

You can stop a sound by calling it's ```stop``` function. Next time the sound is played, it will continue from the start of the sound.

```javascript
sound.stop();
```

### Clone

You can clone a sound object by calling it's ```clone``` function. The object returned will have the same parameters as the original sound.

```javascript
sound.clone();
```

### Add effects ([example](https://alemangui.github.io/pizzicato/#delay))

You can add effects to a sound object by calling it's ```addEffect(effect)``` function. The function gets as parameter a Pizzicato Effect (see [effects](#effects)).

* ```effect``` _(type: Pizzicato.Effect)_: The effect to add to the sound object.

Example:
```javascript
var sound = new Pizzicato.Sound();
var delay = new Pizzicato.Effects.Delay();
sound.addEffect(delay);
```

### Remove effects

You can remove effects that have been added to a sound object by calling it's ```removeEffect(effect)``` function. The function gets as parameter a Pizzicato Effect (see [effects](#effects)) that is already applied to the sound object.

* ```effect``` _(type: Pizzicato.Effect)_: The effect to remove from the sound object.

Example:
```javascript
var sound = new Pizzicato.Sound();
var delay = new Pizzicato.Effects.Delay();
sound.addEffect(delay);
...
sound.removeEffect(delay);
```

### Volume

Use the sound's ```volume``` property to modify its volume.

* ```volume``` _(min: 0, max: 1, defaults to 1)_: The sound's volume

Example:
```javascript
var sound = new Pizzicato.Sound();
sound.volume = 0.5;
```

### Attack ([example](https://alemangui.github.io/pizzicato/#attack-release))

Use the sound's ```attack``` property to modify its attack (or fade-in) value. This value eases the beginning of the sound, often avoiding unwanted clicks.

* ```attack``` _(min: 0, max: 10, defaults to 0.04)_: The sound's attack.

Example:
```javascript
var sound = new Pizzicato.Sound();
sound.attack = 0.9;
```

### Release ([example](https://alemangui.github.io/pizzicato/#attack-release))

Use the sound's ```release``` property to modify its release (or fade-out) value. This value eases the end of the sound, often avoiding unwanted clicks.

* ```release``` _(min: 0, max: 10, defaults to 0.04)_: The sound's release.

Example:
```javascript
var sound = new Pizzicato.Sound();
sound.release = 0.9;
```

### Frequency

If you started a sound of type [wave](#sounds-from-a-wave), you can modify the frequency of the oscillator by altering the ```frequency``` property.

* ```frequency``` _(defaults to 440)_: The oscillator's frequency of a sound of type wave.

Example:
```javascript
var sound = new Pizzicato.Sound();

sound.play();

// go up an octave
sound.frequency = 880; // a5
```

### Events

It is possible to subscribe to the following events that will occur on the Sound object: ```play```, ```pause```, ```stop```, ```end```.

#### ```play``` event

The ```play``` event will be fired when the sound is played.

Example:
```javascript
var sound = new Pizzicato.Sound();

sound.on('play', function() {
//...
})
```

#### ```pause``` event

Fired when the sound is paused. For example:

```javascript
var sound = new Pizzicato.Sound();

sound.on('pause', function() {
//...
})
```

#### ```stop``` event

Fired when the sound is stopped. For example:

```javascript
var sound = new Pizzicato.Sound();

sound.on('stop', function() {
//...
})
```

#### ```end``` event

Fired when the sound has ended. This is only valid for sounds coming from a file. For example:

```javascript
var sound = new Pizzicato.Sound();

sound.on('end', function() {
//...
})
```

###Connecting sounds to AudioNodes
It is possible to connect AudioNodes to sound objects by using the ```connect``` method. More details in the [advanced section of this file](#using-graph-sound).

## Grouping sounds ([example](https://alemangui.github.io/pizzicato/#create-group))
Groups are a way to handle multiple ```Pz.Sound``` objects at the same time.

### Create a group ([example](https://alemangui.github.io/pizzicato/#create-group))

The ```Pizzicato.Group``` constructor takes an optional array of sound objects. Please note these sounds must be detached for them to be usable inside a group (more details about detached sounds [here](#using-graph-sound-detached)).

* ```sounds``` _(array, defaults to [])_: The sounds to be added to the group.

Example:
```javascript
var drums = new Pizzicato.Sound('./audio/drums.mp3');
var guitar = new Pizzicato.Sound('./audio/guitar.mp3');

var group = new Pizzicato.Group([drums, guitar]);
```

### addSound()

To add a sound to a group, use the function ```addSound()```, which receives one parameter:

* ```sound``` _(Pz.Sound, mandatory)_: The sound to be added to the group.

Example:
```javascript
var drums = new Pizzicato.Sound('./audio/drums.mp3');
var guitar = new Pizzicato.Sound('./audio/guitar.mp3');
var group = new Pizzicato.Group();

group.addSound(drums)
group.addSound(guitar)
```

### removeSound()

To remove a sound to a group, use the function ```removeSound()```, which receives one parameter:

* ```sound``` _(Pz.Sound, mandatory)_: The sound to be removed from the group.

Example:
```javascript
var drums = new Pizzicato.Sound('./audio/drums.mp3');
var guitar = new Pizzicato.Sound('./audio/guitar.mp3');
var group = new Pizzicato.Group([guitar, drums]);

group.removeSound(drums)
group.removeSound(guitar)
```

### addEffect()

To add an effect to a group, use the function ```addEffect()```. Please note all sounds inside the group will be affected by the added effect. The function receives one parameter:

* ```effect``` _(Pz.Effect, mandatory)_: The effect to be added to the group.

Example:
```javascript
var bass = new Pizzicato.Sound('./audio/bass.mp3');
var guitar = new Pizzicato.Sound('./audio/guitar.mp3');
var delay = new Pizzicato.Effects.Delay();
var group = new Pizzicato.Group([guitar, drums]);

group.addEffect(delay)
```

### removeEffect()

To remove an effect to a group, use the function ```removeEffect()```. The function receives one parameter:

* ```effect``` _(Pz.Effect, mandatory)_: The effect to be removed from the group.

Example:
```javascript
var bass = new Pizzicato.Sound('./audio/bass.mp3');
var guitar = new Pizzicato.Sound('./audio/guitar.mp3');
var delay = new Pizzicato.Effects.Delay();
var group = new Pizzicato.Group([guitar, drums]);

group.addEffect(delay)

group.removeEffect(delay)
```

### play()

You can play all sounds of a group simultaneously using the function ```play```, which takes no parameters.

Example:
```javascript
var drums = new Pizzicato.Sound('./audio/drums.mp3');
var guitar = new Pizzicato.Sound('./audio/guitar.mp3');
var group = new Pizzicato.Group([guitar, drums]);

group.play();
```

### pause()

You can pause all sounds of a group simultaneously using the function ```pause```, which takes no parameters. Next time the group is played, it will continue from where it left off.

Example:
```javascript
var drums = new Pizzicato.Sound('./audio/drums.mp3');
var guitar = new Pizzicato.Sound('./audio/guitar.mp3');
var group = new Pizzicato.Group([guitar, drums]);

group.play();
group.pause();
```

### stop()
You can stop all sounds of a group simultaneously using the function ```stop```, which takes no parameters. Next time the group is played, it will continue from the start of the sounds composing it.

Example:
```javascript
var drums = new Pizzicato.Sound('./audio/drums.mp3');
var guitar = new Pizzicato.Sound('./audio/guitar.mp3');
var group = new Pizzicato.Group([guitar, drums]);

group.play();
group.stop();
```

### volume

Use the group's ```volume``` property to modify the volume of all the group.

* ```volume``` _(min: 0, max: 1, defaults to 1)_: The sound's volume

Example:
```javascript
var drums = new Pizzicato.Sound('./audio/drums.mp3');
var guitar = new Pizzicato.Sound('./audio/guitar.mp3');
var group = new Pizzicato.Group([guitar, drums]);

group.volume = 0.5;
```

## Effects
Once a sound is created you can add effects to it by using the ```addEffect``` function. To remove an effect, you can use the ```removeEffect``` function.
```javascript
var delay = new Pizzicato.Effects.Delay();
sound.addEffect(delay);
sound.removeEffect(delay);
```

### Delay ([example](https://alemangui.github.io/pizzicato/#delay))
The delay effect plays back the sound a certain number of times in defined intervals, giving the impression of an echo. The following options are available when creating a delay effect:
* ```feedback``` _(min: 0, max: 1, defaults to 0.5)_: The intensity with which the input will echo back. A larger value will result in more echo repetitions.
* ```time``` _(min: 0, max: 1, defaults to 0.3)_: Interval time in seconds.
* ```mix``` _(min: 0, max: 1, defaults to 0.5)_: Volume balance between the original audio and the effected output (the delayed sound).

Example:
```javascript
var delay = new Pizzicato.Effects.Delay({
feedback: 0.8,
time: 0.22,
mix: 0.75
});
sound.addEffect(delay);
sound.play();
```

### Ping Pong Delay ([example](https://alemangui.github.io/pizzicato/#ping-pong-delay))
The ping pong delay effect is similar to a regular [Delay](#delay) effect, however on each feedback loop the output is swapped between left and right channels. The following options are available when creating a delay effect:
* ```feedback``` _(min: 0, max: 1, defaults to 0.5)_: The intensity with which the input will echo back. A larger value will result in more echo repetitions.
* ```time``` _(min: 0, max: 1, defaults to 0.3)_: Interval time in seconds.
* ```mix``` _(min: 0, max: 1, defaults to 0.5)_: Volume balance between the original audio and the effected output (the delayed sound).

Example:
```javascript
var pingPongDelay = new Pizzicato.Effects.PingPongDelay({
feedback: 0.3,
time: 0.2,
mix: 0.68
});
sound.addEffect(pingPongDelay);
sound.play();
```

### Dub Delay ([example](https://alemangui.github.io/pizzicato/#dub-delay))
The dub delay effect is similar to a regular [Delay](#delay) effect, however on each feedback loop the output is routed through a biquad filter.

This effect is based on [Chris Lowis'](https://twitter.com/chrislowis) article [Creating dub delay effects with the Web Audio API](http://blog.chrislowis.co.uk/2014/07/23/dub-delay-web-audio-api.html).

The following options are available when creating a delay effect:
* ```feedback``` _(min: 0, max: 1, defaults to 0.5)_: The intensity with which the input will echo back. A larger value will result in more echo repetitions.
* ```time``` _(min: 0, max: 1, defaults to 0.3)_: Interval time in seconds.
* ```cutoff``` _(min: 0, max: 4000, defaults to 700)_: Frequency value applied to each successive loop. The lower the value, the more different each repetition will be perceived.
* ```mix``` _(min: 0, max: 1, defaults to 0.5)_: Volume balance between the original audio and the effected output (the delayed sound).

Example:
```javascript
var dubDelay = new Pizzicato.Effects.DubDelay({
feedback: 0.6,
time: 0.7,
mix: 0.5,
cutoff: 700
});
sound.addEffect(dubDelay);
sound.play();
```

### Distortion ([example](https://alemangui.github.io/pizzicato/#distortion))
The distortion effect adds a basic "override" to the sound. The distortion effect only takes one parameter:
* ```gain``` _(min: 0, max: 1, defaults to 0.5)_: Amount of distortion applied.

Example:
```javascript
var distortion = new Pizzicato.Effects.Distortion({
gain: 0.4
});
sound.addEffect(delay);
sound.play();
```

### Quadrafuzz ([example](https://alemangui.github.io/pizzicato/#quadrafuzz))
The quadrafuzz effect divides the sound into separate bands and then distorts each band independently, allowing you to control which frequencies you distort and how much.

The quadrafuzz code in Pizzicato is based on [Michel Buffa's](https://twitter.com/micbuffa) implementation of the quadrafuzz effect.

The effect takes the following parameters:
* ```lowGain``` _(min: 0, max: 1, defaults to 0.6)_:
* ```midLowGain``` _(min: 0, max: 1, defaults to 0.8)_:
* ```midHighGain``` _(min: 0, max: 1, defaults to 0.5)_:
* ```highGain``` _(min: 0, max: 1, defaults to 0.6)_:

Example:
```javascript
var quadrafuzz = new Pizzicato.Effects.Quadrafuzz({
lowGain: 0.6,
midLowGain: 0.8,
midHighGain: 0.5,
highGain: 0.6,
});

sound.addEffect(quadrafuzz);
sound.play();
```

### Flanger ([example](https://alemangui.github.io/pizzicato/#flanger))
The flanger produces a swirling effect by delaying a "copy" of the sound by a small, gradually changing period. The flanger effect takes the following parameters:
* ```time``` _(min: 0, max: 1, defaults to 0.45)_: Changes the small delay time applied to the copied signal.
* ```speed``` _(min: 0, max: 1, defaults to 0.2)_: Changes the speed at which the flanging occurs.
* ```depth``` _(min: 0, max: 1, defaults to 0.1)_: Changes the depth/intensity of the swirling effect.
* ```feedback``` _(min: 0, max: 1, defaults to 0.1)_: Changes the volume of the delayed sound.
* ```mix``` _(min: 0, max: 1, defaults to 0.5)_: Volume balance between the original audio and the effected output.

Example:
```javascript
var flanger = new Pizzicato.Effects.Flanger({
time: 0.45,
speed: 0.2,
depth: 0.1,
feedback: 0.1,
mix: 0.5
});

sound.addEffect(flanger);
sound.play();
```

### Compressor ([example](https://alemangui.github.io/pizzicato/#compressor))
A compressor allows reducing the range between the loudest and the quietest parts of a sound. This is done by boosting the quiet segments and attenuating the loud ones.

The following options are available when creating a compressor effect:
* ```threshold``` _(min: -100, max: 0, defaults to -24)_: The decibel value above which the compression will start taking effect.
* ```knee``` _(min: 0, max: 40, defaults to 30)_: A value representing the range above the threshold where the curve smoothly transitions to the "ratio" portion.
* ```attack``` _(min: 0, max: 1, defaults to 0.003)_: How soon the compressor starts to compress the dynamics after the threshold is exceeded. Short values will result in a fast response to sudden, loud sounds, but will make the changes in volume more obvious to listeners.
* ```release``` _(min: 0, max: 1, defaults to 0.025)_: How soon the compressor starts to release the volume level back to normal after the level drops below the threshold.
* ```ratio``` _(min: 1, max: 20, defaults to 12)_: The amount of compression applied to the audio once it passes the threshold level. The higher the Ratio the more the loud parts of the audio will be compressed.
* ```mix``` _(min: 0, max: 1, defaults to 0.5)_: Volume balance between the original audio and the effected output.

Example:
```javascript
var compressor = new Pizzicato.Effects.Compressor({
threshold: -20,
knee: 22,
attack: 0.05,
release: 0.05,
ratio: 18
});
sound.addEffect(compressor);
sound.play();
```

### Low-pass filter ([example](https://alemangui.github.io/pizzicato/#low-pass-filter))
A low-pass filter passes signals with a frequency lower than a pre-determined cutoff frequency and attenuates signals with frequencies higher than the cutoff frequency.

* ```frequency``` _(min: 10, max: 22050, defaults to 350)_: The cutoff frequency of the low-pass filter.
* ```peak``` _(min: 0.0001, max: 1000, defaults to 1)_: Indicates how peaked the frequency is around the cutoff frequency. The greater the value is, the greater is the peak.

Example:
```javascript
var lowPassFilter = new Pizzicato.Effects.LowPassFilter({
frequency: 400,
peak: 10
});

sound.addEffect(lowPassFilter);
sound.play();
```

### High-pass filter ([example](https://alemangui.github.io/pizzicato/#high-pass-filter))
A high-pass filter is the opposite of a low-pass filter (described above). It attenuates signals with a frequency lower than a pre-determined cutoff frequency and passes signals with frequencies higher than the cutoff frequency.

* ```frequency``` _(min: 10, max: 22050, defaults to 350)_: The cutoff frequency of the high-pass filter.
* ```peak``` _(min: 0.0001, max: 1000, defaults to 1)_: Indicates how peaked the frequency is around the cutoff frequency. The greater the value is, the greater is the peak.

Example:
```javascript
var highPassFilter = new Pizzicato.Effects.HighPassFilter({
frequency: 120,
peak: 10
});

sound.addEffect(highPassFilter);
sound.play();
```

### Stereo panner ([example](https://alemangui.github.io/pizzicato/#stereo-panner))
The stereo panner is used to adjust the level of a sound through the left and right speakers. A ```-1``` value will channel all the sound through the left speaker, whereas a ```1``` value will do so through the right speaker.

* ```pan``` _(min: -1, max: 1, defaults to 0)_: Pan value between -1 (full left pan) and 1 (full right pan).

Example:
```javascript
var stereoPanner = new Pizzicato.Effects.StereoPanner({
pan: 0.5
});

sound.addEffect(stereoPanner);
sound.play();
```

### Convolver ([example](https://alemangui.github.io/pizzicato/#convolver))
The convolver effect allows the sound to be heard with a certain ressonance or repercussion. This can be useful to simulate certain environments such as auditoriums, concert halls, or small rooms.

In order to get this acoustic environment, an external audio file must be used as a sound sample. This audio file must contain the desired ambience that will shape the convolution. Due to this file, this effect is asynchronous, so a callback can be provided and will be executed once the effect is ready to be used.

The [reverb](#reverb) is similar but allows programatic adjustments instead of requiring an external impulse file.

_options object_

* ```impulse``` _(Mandatory; string)_: Path to your impulse file.
* ```mix``` _(min: 0, max: 1, defaults to 0.5)_: Volume balance between the original audio and the effected output.

_callback_

* ```callback``` _(function)_: function executed when the impulse file has been correctly loaded and the effect is ready to be used.

Example:
```javascript
var convolver = new Pizzicato.Effects.Convolver({
impulse: './path/to/your/impulse.wav',
mix: 0.5
}, function() {
console.log('Convolver ready to be used.');
});

sound.addEffect(convolver);
sound.play();
```

### Reverb ([example](https://alemangui.github.io/pizzicato/#reverb))
The reverb effect is similar to the convolver effect in that it allows the sound to be heard with a certain ressonance or repercussion. This simulates a particular physical environment in which the sound could be played (e.g., an auditorium, a concert hall, etc).

Unlike the convolver effect, the reverb can be adjusted programatically without the need for any external elements.

* ```time``` _(min: 0.0001, max: 10, defaults to 0.01)_: Duration of impulse, in seconds.
* ```decay``` _(min: 0, max: 10, defaults to 0.01)_: The rate for the reflections of sound to fade away.
* ```reverse``` _(boolean)_: Whether or not to reverse the impulse shape.
* ```mix``` _(min: 0, max: 1, defaults to 0.5)_: Volume balance between the original audio and the effected output.

Example:
```javascript
var reverb = new Pizzicato.Effects.Reverb({
time: 1,
decay: 0.8,
reverse: true,
mix: 0.5
});

sound.addEffect(reverb);
sound.play();
```

### Ring Modulator ([example](https://alemangui.github.io/pizzicato/#ring-modulator))
The ring modulator effect combines two input signals, where one of the inputs is a sine wave modulating the other.

[This article from the BBC](http://webaudio.prototyping.bbc.co.uk/ring-modulator/) - from where this effect was based from - goes into deeper detail and explains how to recreate it. The 'ring' in this effect derives from the layout of diode nodes in the original analogue equipment, and also refers to the sound being increasingly modulated as it travels through the ring of diodes.

* ```distortion``` _(min: 0.2, max: 50, defaults to 1)_: Level of distortion applied to the diode nodes.
* ```speed``` _(min: 0, max: 2000, defaults to 30)_: The frequency of the modulating signal.
* ```mix``` _(min: 0, max: 1, defaults to 0.5)_: Volume balance between the original audio and the effected output.

Example:
```javascript
var ringModulator = new Pizzicato.Effects.RingModulator({
speed: 10,
distortion: 4,
mix: 0.5
});

sound.addEffect(ringModulator);
sound.play();
```

### Tremolo ([example](https://alemangui.github.io/pizzicato/#tremolo))
The tremolo effect changes the volume of the sound over time. The outcome would be similar as if you turned the volume node up and down periodically.

* ```speed``` _(min: 0, max: 20, defaults to 4)_: The speed at which the volume will change.
* ```depth``` _(min: 0, max: 1, defaults to 1)_: The intensity of the volume change.
* ```mix``` _(min: 0, max: 1, defaults to 0.5)_: Volume balance between the original audio and the effected output.

Example:
```javascript
var tremolo = new Pizzicato.Effects.Tremolo({
speed: 5,
depth: 1,
mix: 0.5
});

sound.addEffect(tremolo);
sound.play();
```

### Connecting effects to and from AudioNodes
It is possible to connect AudioNodes to effects (and viceversa) by using the ```connect``` method. More details in the [advanced section of this file](#using-graph-effect).

## Advanced

### Accessing the audio context
If needed, the audio context used by Pizzicato is always accessible:
```javascript
var context = Pizzicato.context;
```

### Using Pizzicato objects in a web audio graph
You can use effects and sounds as part of an existing web audio graph.

#### Connecting nodes to a Pizzicato.Sound object
Using the ```connect``` method, you can connect audio nodes to a Pizzicato.Sound object. For example:
```javascript
var analyser = Pizzicato.context.createAnalyser();
var sound = new Pizzicato.Sound();

sound.connect(analyser);
```

#### Creating a detached Pizzicato.Sound object
All Pizzicato.Sound objects are connected to the context's destination by default. In the example above, the ```sound``` object will be connected to an analyser node and it will also remain connected to the context's destination node.

To have a Pizzicato.Sound object that is not connected to the context's destination, use the ```detached``` option as follows:

```javascript
var analyser = Pizzicato.context.createAnalyser();
var sound = new Pizzicato.Sound({
source: 'wave',
options: {
detached: true
}
});

sound.connect(analyser);
```

#### Connecting nodes to effects
Pizzicato effects can also be used in a web audio graph without the need to create Pizzicato.Sound objects by using the ```connect``` method.

Additionally, the ```connect``` method in an AudioNode can receive a Pizzicato effect as a parameter.

```javascript
var oscillator = Pizzicato.context.createOscillator();
var distortion = new Pizzicato.Effects.Distortion();
var analyser = Pizzicato.context.createAnalyser();

oscillator.connect(distortion);
distortion.connect(analyser);
```

### General volume
In order to change the general volume of all Pizzicato sounds, you can directly modify the property ```volume```:
```javascript
Pizzicato.volume = 0.3;
```

### Memory management

When creating large numbers of Pizzicato objects you may experience a tipping point after which all sounds in the site are muted. This can vary depending on your browser, operating system and computer running the code.

To release some of the load, you can call the ```disconnect``` function on the Pizzicato.Sound objects no longer in use. This will disconnect them from the context's destination and they will become orphaned graphs, which will be freed when necessary.

## Support

### Browsers
Pizzicato can only work in [browsers with Web Audio support](http://caniuse.com/#feat=audio-api). This means:
* Firefox 31+
* Chrome 31+
* Safari 7+ (input source not available in Safari)
* Opera 30+
* Edge 13+

### Audio formats
Pizzicato supports audio formats [supported by your browser](https://developer.mozilla.org/en-US/docs/Web/HTML/Supported_media_formats#Browser_compatibility). These may vary depending on your system version and browser.