Agent skill · Code Review & Quality

analyzing-wav

Analyze WAV audio files for debugging TTS and audio pipelines. Use when checking audio quality, validating WAV format, inspecting waveform patterns, or diagnosing generated speech issues.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill analyzing-wav --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/analysis/analyzing-wav/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# WAV Audio Analysis Skill ## Description Analyze WAV audio files to debug audio generation pipelines. Provides statistical analysis, format validation, and quality metrics for diagnosing issues with generated speech. **Triggers:** wav, audio, waveform, samples, amplitude, audio analysis, sound quality, audio debug ## Analysis Capabilities ### Basic Statistics - Sample count and duration - Min/max amplitude - Standard deviation (expected ~3000-8000 for speech) - Near-silent sample percentage ### Quality Indicators - Zero crossing rate (speech typically 50-200 per 1000 samples) - Clipping detection (samples at ±32767) - NaN/Inf detection (if processing raw floats) - DC offset analysis ### Format Validation - Sample rate verification (24kHz for Qwen3-Omni TTS) - Bit depth check - Channel count - RIFF header validation ## Usage To analyze a WAV file, provide the path and I'll run comprehensive diagnostics: ```python import numpy as np with open("audio.wav", "rb") as f: header = f.read(44) data = f.read() samples = np.frombuffer(data, dtype=np.int16) print(f"Samples: {len(samples)}") print(f"Duration: {len(samples)/24000:.2f} sec") print(f"Min/Max: {samples.min()} / {samples.max()}") p

What's inside
Steps it walks through
  1. Description
  2. Analysis Capabilities
  3. Basic Statistics
  4. Quality Indicators
  5. Format Validation
  6. Usage
  7. Typical Values for Good Speech Audio
  8. Common Issues
  9. 99% Near-Silent
  10. Low Std Dev (<1000)
  11. Constant Value Runs
  12. Clipping (values at ±32767)
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the analyzing-wav skill do?

Analyze WAV audio files for debugging TTS and audio pipelines. Use when checking audio quality, validating WAV format, inspecting waveform patterns, or diagnosing generated speech issues.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill analyzing-wav --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going