skills/audio-process/SKILL.md
Audio processing utilities - noise reduction, normalization, enhancement
npx skillsauth add nuva-lab/vibecut audio-processInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Audio processing utilities for cleaning and enhancing voice recordings.
# Remove background noise
python skills/audio-process/denoise.py input.wav output.wav
# Normalize audio levels
python skills/audio-process/normalize.py input.wav output.wav
# Full voice cleanup pipeline (denoise + normalize + enhance)
python skills/audio-process/clean_voice.py input.wav output.wav
| Operation | Description | Use Case |
|-----------|-------------|----------|
| denoise | Remove background noise | Voice cloning prep |
| normalize | Normalize audio levels | Consistent volume |
| clean_voice | Full cleanup pipeline | Best for voice samples |
afftdn and anlmdn filterstools
Generate voiceover scripts in Joyce's style for video clips
tools
Clone a voice using qwen3-tts and generate speech from text
development
# Validate Media Skill Pre-flight media validation and diagnostics using ffprobe. ## Purpose Check video/audio files for common issues before rendering: - Duration mismatches between video and audio tracks - Missing audio tracks - Codec compatibility - Volume levels - Potential freeze points ## Usage ```bash python skills/validate-media/validate.py <video_file> [--verbose] ``` ## Output JSON report with issues and recommendations: ```json { "file": "video.mp4", "video_duration": 35.1
tools
Transcribe a video clip using Gemini to get timestamped segments for captions