You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs.html
+34-33
Original file line number
Diff line number
Diff line change
@@ -644,14 +644,9 @@ <h3>Waveform</h3>
644
644
645
645
// 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.
646
646
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().
649
648
waveform.waveformSize; // The number of bytes in the peak, average, low, mid and high waveforms and notes.
650
649
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
-
655
650
// Destructor (to free up memory).
656
651
waveform.destruct();
657
652
</code></pre>
@@ -662,16 +657,25 @@ <h3>BandpassFilterbank</h3>
662
657
663
658
<pre><codeclass="language-js">
664
659
// Constructor.
660
+
let frequencies = new Superpowered.Float32Buffer(8), widths = new Superpowered.Float32Buffer(8);
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).
669
670
44100, // The initial sample rate in Hz.
670
671
0 // numGroups: for advanced use.
671
672
// 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.
672
673
// 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.
673
674
);
674
675
676
+
Superpowered.free(frequencies);
677
+
Superpowered.free(widths);
678
+
675
679
// Do this when the sample rate changes.
676
680
filterbank.samplerate = 48000;
677
681
@@ -692,7 +696,8 @@ <h3>BandpassFilterbank</h3>
692
696
);
693
697
694
698
// 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];
696
701
697
702
// Sets all values of bands to 0. Has no return value.
698
703
filterbank.resetBands();
@@ -755,19 +760,15 @@ <h3>Analyzer</h3>
755
760
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.
756
761
757
762
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().
767
769
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.
771
772
772
773
// Destructor (to free up memory).
773
774
analyzer.destruct();
@@ -806,7 +807,7 @@ <h3>Three Band EQ</h3>
806
807
eq.samplerate = 48000;
807
808
808
809
// 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;
810
811
811
812
// Low gain. Read-write. 1 is "flat", 2 is +6db. Kill is enabled under -40 db (0.01). Default: 1. Limits: 0 and 8.
812
813
eq.low = 0.5;
@@ -840,7 +841,7 @@ <h3>Bitcrusher</h3>
840
841
bc.samplerate = 48000;
841
842
842
843
// 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;
844
845
845
846
bc.frequency = 9000; // Frequency in Hz, from 20 Hz to the half of the samplerate.
846
847
bc.bits = 8; // Bit depth, from 1 to 16.
@@ -872,7 +873,7 @@ <h3>Echo</h3>
872
873
echo.samplerate = 48000;
873
874
874
875
// 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;
876
877
877
878
echo.dry = 0.9; // >= 0 and <= 1. Read-write.
878
879
echo.wet = 0.5; // >= 0 and <= 1. Read-write.
@@ -948,7 +949,7 @@ <h3>Flanger</h3>
948
949
flanger.samplerate = 48000;
949
950
950
951
// 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;
952
953
953
954
flanger.wet = 0.5; // 0 to 1.
954
955
flanger.depth = 0.5; // 0 to 1 (0 is 0.3 ms, 1 is 8 ms).
@@ -988,7 +989,7 @@ <h3>Gate</h3>
988
989
gate.samplerate = 48000;
989
990
990
991
// 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;
992
993
993
994
gate.wet = 0.5; // Limited to >= 0 and <= 1.
994
995
gate.bpm = 128; // Limited to >= 40 and <= 250.
@@ -1022,7 +1023,7 @@ <h3>Roll</h3>
1022
1023
roll.samplerate = 48000;
1023
1024
1024
1025
// 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;
1026
1027
1027
1028
roll.wet = 0.5; // Limited to >= 0 and <= 1.
1028
1029
roll.bpm = 128; // Limited to >= 40 and <= 250.
@@ -1056,7 +1057,7 @@ <h3>Reverb</h3>
1056
1057
reverb.samplerate = 48000;
1057
1058
1058
1059
// 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;
1060
1061
1061
1062
reverb.dry = 1; // Set dry independently from wet. Don't use the mix property in this case. >= 0 and <= 1.
1062
1063
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>
1094
1095
whoosh.samplerate = 48000;
1095
1096
1096
1097
// 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;
1098
1099
1099
1100
whoosh.wet = 0.8; // Limited to >= 0 and <= 1.
1100
1101
whoosh.frequency = 1000; // Limited to >= 20 and <= 20000.
@@ -1126,7 +1127,7 @@ <h3>Compressor</h3>
1126
1127
compressor.samplerate = 48000;
1127
1128
1128
1129
// 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;
1130
1131
1131
1132
compressor.inputGainDb = 0; // Input gain in decibels, limited between -24 and 24. Default: 0.
1132
1133
compressor.outputGainDb = 3; // Output gain in decibels, limited between -24 and 24. Default: 0.
@@ -1167,7 +1168,7 @@ <h3>Limiter</h3>
1167
1168
limiter.samplerate = 48000;
1168
1169
1169
1170
// 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;
1171
1172
1172
1173
limiter.ceilingDb = 0; // Ceiling in decibels, limited between 0 and -40. Default: 0.
1173
1174
limiter.thresholdDb = -16; // Threshold in decibels, limited between 0 and -40. Default: 0.
@@ -1231,7 +1232,7 @@ <h3>Filter</h3>
1231
1232
filter.samplerate = 48000;
1232
1233
1233
1234
// 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;
1235
1236
1236
1237
filter.frequency = 1000; // Frequency in Hz. From 1 Hz to the half of the current sample rate.
1237
1238
filter.decibel = 6; // Decibel gain value for shelving and parametric filters. Limit: -96 to 24.
@@ -1296,7 +1297,7 @@ <h3>Guitar Distortion</h3>
1296
1297
gd.samplerate = 48000;
1297
1298
1298
1299
// 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;
1300
1301
1301
1302
gd.gainDecibel = 0; // Gain value in decibel. Limit: -96 to 24.
0 commit comments