some jsdoc notes on Meter and Recorder

This commit is contained in:
Yotam Mann 2014-10-13 17:31:07 -04:00
parent 4ffb83bd9c
commit d1cf785350
2 changed files with 4 additions and 1 deletions

View file

@ -6,6 +6,8 @@ define(["Tone/core/Tone", "Tone/core/Master"], function(Tone){
* @class Get the rms of the input signal with some averaging.
* can also just get the value of the signal
* or the value in dB. inspired by https://github.com/cwilso/volume-meter/blob/master/volume-meter.js
* Note that for signal processing, it's better to use {@link Tone.Follower} which will produce
* an audio-rate envelope follower instead of needing to poll the Meter to get the output.
*
* @constructor
* @extends {Tone}

View file

@ -4,7 +4,8 @@ define(["Tone/core/Tone", "Tone/core/Master"], function(Tone){
/**
* @class Record an input into an array or AudioBuffer.
* it is limited in that the recording length needs to be known beforehand
* it is limited in that the recording length needs to be known beforehand.
* Mostly used internally for testing.
*
* @constructor
* @extends {Tone}