Views
No views yet
| Section | Controls |
|---|---|
| Trim | Start / end time in seconds |
| Pitch Shift | ±24 semitones, duration unchanged |
| Time Stretch | Speed multiplier with pitch-lock (phase vocoder) or pitch-follows-speed (resample) |
| Filter | Lowpass / Highpass / Bandpass — cutoff Hz + Q |
| EQ | 3-band: low shelf, mid peak, high shelf — all in dB |
| Compressor | Threshold, ratio, attack/release, makeup gain |
| Reverb | Room size, damping, wet/dry, stereo width |
| Chorus | Rate, depth, delay, mix |
| Gain | dB adjustment + optional normalize to 0dBFS |
| Fade | Fade in / fade out in seconds |
| Preview | Toggle — renders a playback widget directly on the node |
| Flush | Toggle — wipes RAM and VRAM before handing off to LTX |
Trim → Pitch → Tempo → Filter → EQ → Compressor → Reverb → Chorus → Gain → FadeLoad Audio → 🎛️ Rebel Audio Edit → LTX VideoLoad Audio
│
▼
Section Extract (start_sec=1.0, end_sec=3.0)
├─ section ──────────────────► Rebel Audio Edit ──► Section Merge (section)
├─ original ────────────────────────────────────────► Section Merge (original)
├─ start_sec ────────────────────────────────────────► Section Merge (start_sec)
└─ end_sec ────────────────────────────────────────► Section Merge (end_sec)
│
▼
LTX Videostart_sec AND end_sec from Section Extract directly into Section Merge. Section Merge uses end_sec to know exactly where to resume the original audio — if you don't wire it, the splice point will be wrong.crossfade_ms parameter (default 20ms) that smooths the join at both cut points to prevent clicks. Set to 0 for a hard cut.1cd ComfyUI/custom_nodes
2git clone https://github.com/RealRebelAI/Rebels_Audio_Nodes1# Windows portable
2python_embeded\python.exe -m pip install pedalboard librosa soundfile
3
4# Standard venv
5pip install pedalboard librosa soundfile| Library | Used For |
|---|---|
| pedalboard | Pitch shift, reverb, EQ, filter, compressor, chorus (Spotify / JUCE-backed) |
| librosa | Phase vocoder time stretch (tempo without pitch change) |
| soundfile | Writing preview audio to temp files |