wavecap-audio
Analyze recorded audio files from WaveCap. Use when the user wants to inspect audio recordings, check audio quality, list available recordings, or get audio file metadata.
npx skills add majiayu000/claude-skill-registry --skill wavecap-audio --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# WaveCap Audio Analysis Skill Use this skill to analyze and inspect recorded audio files from WaveCap transcription sessions. ## Recordings Location Audio recordings are stored in the state directory: ```bash STATE_DIR="/Users/thw/Projects/WaveCap/state" RECORDINGS_DIR="$STATE_DIR/recordings" ``` Recordings are also accessible via HTTP at `http://localhost:8000/recordings/` ## List Available Recordings ### List all recordings ```bash ls -la "$STATE_DIR/recordings/" | head -50 ``` ### List recordings with sizes (sorted by date) ```bash ls -lht "$STATE_DIR/recordings/" | head -30 ``` ### Count total recordings ```bash ls "$STATE_DIR/recordings/" 2>/dev/null | wc -l ``` ### Find recordings by date ```bash # Today's recordings find "$STATE_DIR/recordings" -name "*.wav" -mtime 0 -type f # Last 7 days find "$STATE_DIR/recordings" -name "*.wav" -mtime -7 -type f ``` ## Get Audio File Metadata ### Basic file info ```bash file "$STATE_DIR/recordings/FILENAME.wav" ``` ### Detailed audio properties (requires ffprobe/sox) ```bash # Using ffprobe (if available) ffprobe -v quiet -show_format -show_streams "$STATE_DIR/recordings/FILENAME.wav" 2>/dev/null | grep -E "duration|sample_rate|channels|
- Recordings Location
- List Available Recordings
- List all recordings
- List recordings with sizes (sorted by date)
- Count total recordings
- Find recordings by date
- Get Audio File Metadata
- Basic file info
- Detailed audio properties (requires ffprobe/sox)
- Get duration of a recording
- Find Recordings for a Transcription
- Get recording URL from transcription
- Check if recording file exists
- Analyze Audio Quality
ls -la "$STATE_DIR/recordings/" | head -50 ls -lht "$STATE_DIR/recordings/" | head -30 ls "$STATE_DIR/recordings/" 2>/dev/null | wc -l find "$STATE_DIR/recordings" -name "*.wav" -mtime 0 -type f Last 7 days find "$STATE_DIR/recordings" -name "*.wav" -mtime -7 -type f file "$STATE_DIR/recordings/FILENAME.wav" Using ffprobe (if available) ffprobe -v quiet -show_format -show_streams "$STATE_DIR/recordings/FILENAME.wav" 2>/dev/null | grep -E "duration|sample_rate|channels|bit_rate" Using soxi (if sox installed)
What does the wavecap-audio skill do?
Analyze recorded audio files from WaveCap. Use when the user wants to inspect audio recordings, check audio quality, list available recordings, or get audio file metadata.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill wavecap-audio --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.
