SuperCollider allows for various modes of graphical representations of sound. Spectrogram
adds yet another mode (spectral view) to the Wave scope or the Frequency scope.
Spectrogram
comes in two modes, as a view that can be added to any Window, and a special window that functions like the FreqScope window. See SpectrogramWindow which provides a GUI with controls over Spectrogram
's paramters.
Initialize the view, either in a Window or not.
parent |
A Window (optional). |
bounds |
A Rect where the spectrogram appears in the parent (optional). |
bufSize |
frames in FFT window. default: 1024. Use power-of-2 sizes, such as 512 or 2048. |
color |
The foreground Color. |
background |
The background Color. |
lowfreq | |
highfreq |
Specify the range of frequencies you want to visualise. |
Starts analysis and drawing.
Stop analysis and drawing.
Set the buffer size of the fft window.
Refresh rate. Default is 25 frames per second
Intensity is how strong the drawn color is. Default value is 5.
The audio bus of analysis.
The color that is drawn.
The background color.
Number of frames in FFT window.