Skip to content

Commit eba900b

Browse files
committed
Updated analyzer/filterbank docs
1 parent 41ae683 commit eba900b

File tree

1 file changed

+34
-33
lines changed

1 file changed

+34
-33
lines changed

docs.html

+34-33
Original file line numberDiff line numberDiff line change
@@ -644,14 +644,9 @@ <h3>Waveform</h3>
644644

645645
// Makes the result from the collected data. This method should NOT be used in a real-time audio thread, because it allocates memory. Has no return value.
646646
waveform.makeResult();
647-
648-
waveform.peakWaveform; // 150 points/sec waveform data displaying the peak volume. Uint8Array. Each byte represents one "pixel". Available after calling makeResult().
647+
let w = waveform.getPeakWaveform(); // Superpowered.Uint8Buffer. 150 points/sec waveform data displaying the peak volume. Uint8Array. Each byte represents one "pixel". Available after calling makeResult().
649648
waveform.waveformSize; // The number of bytes in the peak, average, low, mid and high waveforms and notes.
650649

651-
// To keep the array result after you destruct the waveform without an expensive memory copy, do this:
652-
let peakWaveform = waveform.peakWaveform;
653-
waveform.peakWaveform = null;
654-
655650
// Destructor (to free up memory).
656651
waveform.destruct();
657652
</code></pre>
@@ -662,16 +657,25 @@ <h3>BandpassFilterbank</h3>
662657

663658
<pre><code class="language-js">
664659
// Constructor.
660+
let frequencies = new Superpowered.Float32Buffer(8), widths = new Superpowered.Float32Buffer(8);
661+
for (let n = 0; n < 8; n++) {
662+
frequencies.array[n] = n * 1000;
663+
widths.array[n] = 1;
664+
}
665+
665666
let filterbank = new Superpowered.BandpassFilterbank(
666667
8, // The number of bands. Must be a multiply of 8.
667-
[ 100, 100, 100, 100, 100, 100, 100, 100 ], // Center frequencies of each band in Hz.
668-
[ 1, 1, 1, 1, 1, 1, 1, 1 ], // Widths of each band in octave (1.0 is one octave, 1.0 / 12.0 is one halfnote).
668+
frequencies.pointer, // Center frequencies of each band in Hz.
669+
widths.pointer, // Widths of each band in octave (1.0 is one octave, 1.0 / 12.0 is one halfnote).
669670
44100, // The initial sample rate in Hz.
670671
0 // numGroups: for advanced use.
671672
// The filter bank can be set up with multiple frequency + width groups, then process() or processNoAdd() can be performed with one specific frequency + width group. For example, set up one group with wide frequency coverage for the 20-20000 Hz range and three additional groups for 20-200 Hz, 200-2000 Hz and 2000-20000 Hz. When processing with the wide group of 20-20000 Hz and the highest magnitude can be found at 1000 Hz, use the 200-2000 Hz group for the next process() or processNoAdd() call, so the filter bank will have a "focus" on a narrower range.
672673
// If numGroups > 0, then the number of frequencies and widths should be numGroups * numBands. Example: for numBands = 8 and numGroups = 2, provide 8 + 8 frequencies and 8 + 8 widths.
673674
);
674675

676+
Superpowered.free(frequencies);
677+
Superpowered.free(widths);
678+
675679
// Do this when the sample rate changes.
676680
filterbank.samplerate = 48000;
677681

@@ -692,7 +696,8 @@ <h3>BandpassFilterbank</h3>
692696
);
693697

694698
// The magnitude of the frequency bands. Will be updated after each process() or processNoAdd() call.
695-
let band0_magnitude = filterbank.bands[0];
699+
let bands = filterbank.getBands(); // Superpowered.Float32Buffer
700+
let band0_magnitude = bands.array[0];
696701

697702
// Sets all values of bands to 0. Has no return value.
698703
filterbank.resetBands();
@@ -755,19 +760,15 @@ <h3>Analyzer</h3>
755760
analyzer.keyIndex; // The dominant key (chord) of the music. 0..11 are major keys from A to G#, 12..23 are minor keys from A to G#. Check the static constants in this header for musical, Camelot and Open Key notations.
756761

757762
analyzer.waveformSize; // The number of bytes in the peak, average, low, mid and high waveforms and notes.
758-
analyzer.peakWaveform; // 150 points/sec waveform data displaying the peak volume. Uint8Array. Each byte represents one "pixel". Available after calling makeResults().
759-
analyzer.averageWaveform; // 150 points/sec waveform data displaying the average volume. Uint8Array. Each byte represents one "pixel". Available after calling makeResults().
760-
analyzer.lowWaveform; // 150 points/sec waveform data displaying the low frequencies (below 200 Hz). Uint8Array. Each byte represents one "pixel". Available after calling makeResults().
761-
analyzer.midWaveform; // 150 points/sec waveform data displaying the mid frequencies (200-1600 Hz). Uint8Array. Each byte represents one "pixel". Available after calling makeResults().
762-
analyzer.highWaveform; // 150 points/sec waveform data displaying the high frequencies (above 1600 Hz). Uint8Array. Each byte represents one "pixel". Available after calling makeResults().
763-
analyzer.notes; // 150 points/sec data displaying the bass and mid keys. Upper 4 bits are the bass notes 0 to 11, lower 4 bits are the mid notes 0 to 11 (C, C#, D, D#, E, F, F#, G, G#, A, A#, B). The note value is 12 means "unknown note due low volume". Available after calling makeResults().
764-
765-
analyzer.overviewSize; // The number bytes in overviewWaveform.
766-
analyzer.overviewWaveform; // 1 point/sec waveform data displaying the average volume in decibels. Useful for displaying the overall structure of a track. Int8Array. Each byte has the value of -128 to 0, in decibels.
763+
let w = analyzer.getPeakWaveform(); // Superpowered.Uint8Buffer. 150 points/sec waveform data displaying the peak volume. Each byte represents one "pixel". Available after calling makeResults().
764+
let w = analyzer.getAverageWaveform(); // Superpowered.Uint8Buffer. 150 points/sec waveform data displaying the average volume. Each byte represents one "pixel". Available after calling makeResults().
765+
let w = analyzer.getLowWaveform(); // Superpowered.Uint8Buffer. 150 points/sec waveform data displaying the low frequencies (below 200 Hz). Each byte represents one "pixel". Available after calling makeResults().
766+
let w = analyzer.getMidWaveform(); // Superpowered.Uint8Buffer. 150 points/sec waveform data displaying the mid frequencies (200-1600 Hz). Each byte represents one "pixel". Available after calling makeResults().
767+
let w = analyzer.getHighWaveform(); // Superpowered.Uint8Buffer. 150 points/sec waveform data displaying the high frequencies (above 1600 Hz). Each byte represents one "pixel". Available after calling makeResults().
768+
let n = analyzer.getNotes(); // Superpowered.Uint8Buffer. 150 points/sec data displaying the bass and mid keys. Upper 4 bits are the bass notes 0 to 11, lower 4 bits are the mid notes 0 to 11 (C, C#, D, D#, E, F, F#, G, G#, A, A#, B). The note value is 12 means "unknown note due low volume". Available after calling makeResults().
767769

768-
// To keep an array result after you destruct the analyzer without an expensive memory copy, do this:
769-
let peakWaveform = analyzer.peakWaveform;
770-
analyzer.peakWaveform = null;
770+
analyzer.overviewSize; // The number bytes in overviewWaveform.
771+
let w = analyzer.getOverviewWaveform(); // Superpowered.Uint8Buffer. 1 point/sec waveform data displaying the average volume in decibels. Useful for displaying the overall structure of a track. Int8Array. Each byte has the value of -128 to 0, in decibels.
771772

772773
// Destructor (to free up memory).
773774
analyzer.destruct();
@@ -806,7 +807,7 @@ <h3>Three Band EQ</h3>
806807
eq.samplerate = 48000;
807808

808809
// Turns the effect on/off. False by default. The actual switch will happen on the next process() call for smooth, audio-artifact free operation.
809-
eq.enable = true;
810+
eq.enabled = true;
810811

811812
// Low gain. Read-write. 1 is "flat", 2 is +6db. Kill is enabled under -40 db (0.01). Default: 1. Limits: 0 and 8.
812813
eq.low = 0.5;
@@ -840,7 +841,7 @@ <h3>Bitcrusher</h3>
840841
bc.samplerate = 48000;
841842

842843
// Turns the effect on/off. False by default. The actual switch will happen on the next process() call for smooth, audio-artifact free operation.
843-
bc.enable = true;
844+
bc.enabled = true;
844845

845846
bc.frequency = 9000; // Frequency in Hz, from 20 Hz to the half of the samplerate.
846847
bc.bits = 8; // Bit depth, from 1 to 16.
@@ -872,7 +873,7 @@ <h3>Echo</h3>
872873
echo.samplerate = 48000;
873874

874875
// Turns the effect on/off. False by default. The actual switch will happen on the next process() call for smooth, audio-artifact free operation.
875-
echo.enable = true;
876+
echo.enabled = true;
876877

877878
echo.dry = 0.9; // >= 0 and <= 1. Read-write.
878879
echo.wet = 0.5; // >= 0 and <= 1. Read-write.
@@ -948,7 +949,7 @@ <h3>Flanger</h3>
948949
flanger.samplerate = 48000;
949950

950951
// Turns the effect on/off. False by default. The actual switch will happen on the next process() call for smooth, audio-artifact free operation.
951-
flanger.enable = true;
952+
flanger.enabled = true;
952953

953954
flanger.wet = 0.5; // 0 to 1.
954955
flanger.depth = 0.5; // 0 to 1 (0 is 0.3 ms, 1 is 8 ms).
@@ -988,7 +989,7 @@ <h3>Gate</h3>
988989
gate.samplerate = 48000;
989990

990991
// Turns the effect on/off. False by default. The actual switch will happen on the next process() call for smooth, audio-artifact free operation.
991-
gate.enable = true;
992+
gate.enabled = true;
992993

993994
gate.wet = 0.5; // Limited to >= 0 and <= 1.
994995
gate.bpm = 128; // Limited to >= 40 and <= 250.
@@ -1022,7 +1023,7 @@ <h3>Roll</h3>
10221023
roll.samplerate = 48000;
10231024

10241025
// Turns the effect on/off. False by default. The actual switch will happen on the next process() call for smooth, audio-artifact free operation.
1025-
roll.enable = true;
1026+
roll.enabled = true;
10261027

10271028
roll.wet = 0.5; // Limited to >= 0 and <= 1.
10281029
roll.bpm = 128; // Limited to >= 40 and <= 250.
@@ -1056,7 +1057,7 @@ <h3>Reverb</h3>
10561057
reverb.samplerate = 48000;
10571058

10581059
// Turns the effect on/off. False by default. The actual switch will happen on the next process() call for smooth, audio-artifact free operation.
1059-
reverb.enable = true;
1060+
reverb.enabled = true;
10601061

10611062
reverb.dry = 1; // Set dry independently from wet. Don't use the mix property in this case. >= 0 and <= 1.
10621063
reverb.wet = 0.5; // Set wet independently from dry. Don't use the mix property in this case. >= 0 and <= 1.
@@ -1094,7 +1095,7 @@ <h3>Whoosh</h3>
10941095
whoosh.samplerate = 48000;
10951096

10961097
// Turns the effect on/off. False by default. The actual switch will happen on the next process() call for smooth, audio-artifact free operation.
1097-
whoosh.enable = true;
1098+
whoosh.enabled = true;
10981099

10991100
whoosh.wet = 0.8; // Limited to >= 0 and <= 1.
11001101
whoosh.frequency = 1000; // Limited to >= 20 and <= 20000.
@@ -1126,7 +1127,7 @@ <h3>Compressor</h3>
11261127
compressor.samplerate = 48000;
11271128

11281129
// Turns the effect on/off. False by default. The actual switch will happen on the next process() call for smooth, audio-artifact free operation.
1129-
compressor.enable = true;
1130+
compressor.enabled = true;
11301131

11311132
compressor.inputGainDb = 0; // Input gain in decibels, limited between -24 and 24. Default: 0.
11321133
compressor.outputGainDb = 3; // Output gain in decibels, limited between -24 and 24. Default: 0.
@@ -1167,7 +1168,7 @@ <h3>Limiter</h3>
11671168
limiter.samplerate = 48000;
11681169

11691170
// Turns the effect on/off. False by default. The actual switch will happen on the next process() call for smooth, audio-artifact free operation.
1170-
limiter.enable = true;
1171+
limiter.enabled = true;
11711172

11721173
limiter.ceilingDb = 0; // Ceiling in decibels, limited between 0 and -40. Default: 0.
11731174
limiter.thresholdDb = -16; // Threshold in decibels, limited between 0 and -40. Default: 0.
@@ -1231,7 +1232,7 @@ <h3>Filter</h3>
12311232
filter.samplerate = 48000;
12321233

12331234
// Turns the effect on/off. False by default. The actual switch will happen on the next process() call for smooth, audio-artifact free operation.
1234-
filter.enable = true;
1235+
filter.enabled = true;
12351236

12361237
filter.frequency = 1000; // Frequency in Hz. From 1 Hz to the half of the current sample rate.
12371238
filter.decibel = 6; // Decibel gain value for shelving and parametric filters. Limit: -96 to 24.
@@ -1296,7 +1297,7 @@ <h3>Guitar Distortion</h3>
12961297
gd.samplerate = 48000;
12971298

12981299
// Turns the effect on/off. False by default. The actual switch will happen on the next process() call for smooth, audio-artifact free operation.
1299-
gd.enable = true;
1300+
gd.enabled = true;
13001301

13011302
gd.gainDecibel = 0; // Gain value in decibel. Limit: -96 to 24.
13021303
gd.drive = 0.2; // Drive percentage, from 0 to 1.

0 commit comments

Comments
 (0)