Voice/audio cleanup step of the AI Video Editor pipeline — diagnose a video's background noise, pick the right denoise method, and produce a cleaned master (voice isolated, levels preserved, video stream copied). Use when the user wants to "clean the audio / voice", "remove background noise", "denoise", "isolate voice", fix outdoor/room/water/hum/hiss noise, run ElevenLabs Voice Isolator or local RNNoise, A/B denoise methods, or produce a cleaned master for a video-N in this repo. Covers diagnosing the noise (spectrogram + levels), choosing eleven vs rnnoise by noise type, the sample A/B, tools/clean_voice.py, preserving levels (RMS-match, not LUFS), and rewiring the pipeline to the clean master. Not the SFX/music mix (that is /suggest-sfx + the final-mix step) and not the cut (that is /clean-cut).
npx skills add https://github.com/hassancs91/claude-youtube-editor --skill clean-audio
Take a locked master cut and remove its background noise, producing a cleaned master whose voice
sounds natural and whose visuals are untouched. Runs early (once the cut is locked) so everything
downstream — TSX bake, SFX mix, final assemble — sits on the clean voice. Work with the user; the
final loudness/limiting is the final-mix step's job, this step is "denoise only, levels preserved."
The engine is tools/clean_voice.py; this skill is the judgment around it: diagnose → pick method
→ A/B → clean → rewire.
| Method | What it is | Use when | Cost |
|---|---|---|---|
| --method eleven | ElevenLabs Voice Isolator (cloud ML voice/noise separation) | Dynamic, broadband noise in the voice band — outdoor running water, wind, traffic, crowd, cafe. Local tools CANNOT remove these. | ~1000 credits/min (~$1 for a 5.5-min video); needs ELEVENLABS_API_KEY |
| --method rnnoise --model sh (or cb) | Local RNNoise via ffmpeg arnndn (models in tools/models/rnnoise/) | Stationary / mild noise (steady hiss, fan, some room tone). Free/offline. Only PARTIALLY removes dynamic noise. | free |
Proven on video-1 (shot outdoors with a stream): afftdn did ~nothing, RNNoise only partially darkened
the water bed, ElevenLabs removed it near-completely (pauses to near-silence, voice + breaths intact).
Rule of thumb: stationary noise → try local first; dynamic broadband (water/wind/traffic) → ElevenLabs.
videos/video-N/reference/<cut>.mp4 (or the locked cut). Original is NEVER modified;output is a new -clean / -clean-<model> file.
videos/video-N/output/video-N-preview.mp4, to make a cleanin-context preview by swapping audio (its video is identical — no re-bake needed).
videos/video-N/work/timeline.json — its master field; you rewire this to the clean master on approval.ffmpeg -i M -vn -af astats (RMS, peak, noise floor) + ebur128 (integrated LUFS, true peak).edited-transcript.json for the biggest inter-word gaps) and measurethe pure-noise RMS there vs speech RMS → the real SNR.
ffmpeg -i M -vn -lavfi showspectrumpic=s=1500x600:legend=1:scale=log out.png andLOOK at it. Hum = steady horizontal lines (50/60Hz) → notch. Rumble = low band → high-pass. Broadband
bed that fills the voice band and fluctuates = dynamic (water/wind) → ElevenLabs. HF hiss = bright top band.
run each candidate method, level-match them to each other, and compare — by ear (the real test) AND by
spectrogram (pauses going dark = noise removed) and residual level. Let the user pick.
python tools/clean_voice.py videos/video-N/reference/<cut>.mp4 --method <chosen> [--model sh]→ <cut>-clean.mp4 (or -clean-<model>.mp4). Video stream COPIED (fast, non-destructive, keeps 4K60).
it is gated and inflated by the removed noise, and over-boosts the voice into clipping. The clean file
will read a lower integrated LUFS than the noisy original; that is expected (the noise was padding the
number), the voice RMS is unchanged. Final loudness to -14 LUFS is the final-mix step's job.
composited preview — ffmpeg -i preview.mp4 -i <cut>-clean.mp4 -map 0:v -map 1:a -c:v copy -c:a aac -shortest preview-clean.mp4
(video identical, no re-bake). For a full A/B, also export FULL_*.mp3 scrub files.
timeline.json "master" at the clean file so every futurebake/mix uses the clean voice; re-bake the preview if needed.
the dead-silent gaps can feel vacuum-sealed. Offer to add back a low-level neutral ambience if wanted.
processed. Prefer the gentlest method that clears the noise; don't over-strip a clean track.
Local spectral/RNNoise can't separate dynamic broadband noise; that's ElevenLabs' job.
python tools/clean_voice.py IN.mp4 [--method eleven|rnnoise] [--model sh|cb] [-o OUT.mp4] [--no-preserve-loudness] [--keep]ffmpeg -i M -vn -af astats -f null - · ffmpeg -i M -vn -lavfi showspectrumpic=... out.png (then Read the png).tools/models/rnnoise/<model>.rnnn (sh, cb).Done = the noise is diagnosed, the method is chosen (A/B'd if needed), the full master is cleaned with
levels preserved, the user has approved by ear, and — on approval — timeline.json points at the clean
master. Update memory if a noise-type → method lesson emerges.
Take hassancs91/clean-audio from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.