mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 16:48:00 +00:00
some jsdoc notes on Meter and Recorder
This commit is contained in:
parent
4ffb83bd9c
commit
d1cf785350
2 changed files with 4 additions and 1 deletions
|
@ -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}
|
||||
|
|
|
@ -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}
|
||||
|
|
Loading…
Reference in a new issue