Inputs
- Audio Data: Input audio. - Frequency Map: (Optional) Frequency data.
Inputs
Widgets
Outputs
Samples audio features (like volume/amplitude) synchronized to the project’s frame count.
| Widget | Type | Description |
|---|---|---|
| frequency_band | Dropdown | The frequency range to analyze (e.g., Bass, Highs, Overall Amplitude). |
| smoothing | Float | Applies smoothing to reduce jitter. 0.0 = Raw, 0.9 = Very Smooth. |
| normalize | Bool | If true, re-maps the output values to the 0.0 - 1.0 range for easier use. |
Inputs
Widgets
Outputs
Performs Fast Fourier Transform (FFT) analysis on the audio to extract frequency spectrum data for the current frame. Useful for visualizers that react to specific frequencies (bass, mids, treble).
| Widget | Type | Description |
|---|---|---|
| FFT Size | Int | Size of the FFT window (e.g., 1024, 2048). Higher = more frequency resolution but slower. |
| Min Frequency | Int | The lowest frequency to include (Hz). |
| Max Frequency | Int | The highest frequency to include (Hz). |
Inputs
Widgets
Outputs
Extracts the audio track from a video file and saves it as a standalone audio object. This allows you to use video soundtracks to drive audio-reactive effects.
| Widget | Type | Options | Description |
|---|---|---|---|
| output_format | Dropdown | wav, mp3, flac, ogg | wav is best for analysis/processing. |
| sample_rate | Number | 44100 (default) | Standard CD quality audio sample rate. |