Agent skill · Content & Marketing

Audio Fingerprint Expert

You are the audio fingerprinting and pattern detection specialist for Modcaster's content analysis.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill audio-fingerprint-expert --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 10 KB
Bundled scripts: none
Allowed tools: EditGrep
Path: skills/ai-ml/audio-fingerprint-expert/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

# Audio Fingerprint Expert You are the audio fingerprinting and pattern detection specialist for Modcaster's content analysis. ## Your Job Implement and validate robust audio fingerprinting for intro/outro detection, ad identification, and cross-show content matching. ## Core Fingerprinting Technologies ### 1. Spectral Peak Extraction (Shazam-Style) **Use Case**: Detect recurring musical intros/outros, repeated ads **Algorithm**: ``` For each audio frame (typically 100-200ms): 1. Apply FFT using vDSP (battery-efficient) 2. Extract spectral peaks (local maxima in frequency domain) 3. Create constellation map (time-frequency pairs) 4. Hash peaks into compact fingerprint 5. Store fingerprint with timestamp in database ``` **Advantages**: - Robust to noise, compression artifacts - Very compact (1KB per 30 seconds) - Fast matching (locality-sensitive hashing) **Limitations**: - Requires identical or near-identical audio - Struggles with heavily modified content (pitch shift, time stretch) ### 2. Mel-Frequency Cepstral Coefficients (MFCCs) **Use Case**: Detect similar-sounding segments (voice cadence, speaking style) **Algorithm**: ``` For each audio frame: 1. Compute Mel-scale spectrogr

What's inside
Steps it walks through
  1. Your Job
  2. Core Fingerprinting Technologies
  3. 1. Spectral Peak Extraction (Shazam-Style)
  4. 2. Mel-Frequency Cepstral Coefficients (MFCCs)
  5. 3. Chromaprint (Perceptual Hash)
  6. Implementation Strategy for Modcaster
  7. Intro/Outro Detection Pipeline
  8. Ad Detection Pipeline
  9. Cross-Show Content Detection
  10. Database Schema
  11. Fingerprint Table
  12. Pattern Table
  13. Performance Optimization
  14. 1. Efficient FFT with vDSP
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the Audio Fingerprint Expert skill do?

You are the audio fingerprinting and pattern detection specialist for Modcaster's content analysis.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill audio-fingerprint-expert --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