Agent skill · Data & Analytics

audio-analysis

Audio analysis with Tone.js and Web Audio API including FFT, frequency data extraction, amplitude measurement, and waveform analysis. Use when extracting audio data for visualizations, beat detection, or any audio-reactive features.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill audio-analysis-bbeierle12-skill-mcp-claude-2 --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 11 KB
Bundled scripts: none
Path: skills/analysis/audio-analysis-bbeierle12-skill-mcp-claude-2/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 Analysis FFT, frequency extraction, and audio data analysis. ## Quick Start ```javascript import * as Tone from 'tone'; // Create analyzer const analyser = new Tone.Analyser('fft', 256); const player = new Tone.Player('/audio/music.mp3'); player.connect(analyser); player.toDestination(); // Get frequency data const frequencyData = analyser.getValue(); // Float32Array ``` ## Analyzer Types ### FFT Analyzer ```javascript // FFT (Fast Fourier Transform) - frequency spectrum const fftAnalyser = new Tone.Analyser({ type: 'fft', size: 256, // Must be power of 2: 32, 64, 128, 256, 512, 1024, 2048 smoothing: 0.8 // 0-1, higher = smoother transitions }); // Returns Float32Array of dB values (typically -100 to 0) const fftData = fftAnalyser.getValue(); ``` ### Waveform Analyzer ```javascript // Waveform - time domain data const waveformAnalyser = new Tone.Analyser({ type: 'waveform', size: 1024 }); // Returns Float32Array of amplitude values (-1 to 1) const waveformData = waveformAnalyser.getValue(); ``` ### Meter (Volume Level) ```javascript // Meter - overall volume level const meter = new Tone.Meter({ smoothing: 0.9, normalRange: false // true for 0-1, false for dB }); player.conn

What's inside
Steps it walks through
  1. Quick Start
  2. Analyzer Types
  3. FFT Analyzer
  4. Waveform Analyzer
  5. Meter (Volume Level)
  6. FFT Size Impact
  7. Frequency Bands
  8. Manual Band Extraction
  9. Normalized Band Values
  10. Beat Detection
  11. Simple Peak Detection
  12. Energy History Beat Detection
  13. Amplitude Analysis
  14. RMS (Root Mean Square)
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the audio-analysis skill do?

Audio analysis with Tone.js and Web Audio API including FFT, frequency data extraction, amplitude measurement, and waveform analysis. Use when extracting audio data for visualizations, beat detection, or any audio-reactive features.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill audio-analysis-bbeierle12-skill-mcp-claude-2 --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