AgentSkillsCN

audio-process

音频处理工具——降噪、归一化、增强音质

SKILL.md
--- frontmatter
name: audio-process
description: Audio processing utilities - noise reduction, normalization, enhancement

Audio Process Skill

Audio processing utilities for cleaning and enhancing voice recordings.

Usage

bash
# 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

Available Operations

OperationDescriptionUse Case
denoiseRemove background noiseVoice cloning prep
normalizeNormalize audio levelsConsistent volume
clean_voiceFull cleanup pipelineBest for voice samples

Notes

  • Uses FFmpeg's afftdn and anlmdn filters
  • Optimized for speech/voice content
  • Preserves voice characteristics while removing noise