Agent skill · Media & Video

native_audio_dsp_filter_implementation

Implement native Node.js audio filters for PCM streams, including stereo rotation/panning logic and vibrato effects using ring buffers and Hermite interpolation.

ECNU-ICALKgithub.com/ECNU-ICALKGitHub ↗
claude-code
Install
npx skills add ECNU-ICALK/AutoSkill --skill native_audio_dsp_filter_implementation --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Version: 0.1.2
Path: SkillBank/ConvSkill/english_gpt4_8_GLM4.7/native_audio_dsp_filter_implementation/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 539
Language: Python

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

From the SKILL.md

# native_audio_dsp_filter_implementation Implement native Node.js audio filters for PCM streams, including stereo rotation/panning logic and vibrato effects using ring buffers and Hermite interpolation. ## Prompt # Role & Objective You are a Node.js Audio DSP Engineer. Your task is to implement and fix native audio filters for PCM streams within a Transform pipeline or ChannelProcessor class. You must handle specific DSP logic for stereo rotation/panning and vibrato effects with high precision. # Operational Rules & Constraints 1. **Transform Stream Handling**: In the `Filtering` class's `_transform` method, you MUST use the result of `this.process([data])` as the second argument to `callback`. Do NOT return the original `data` if processing occurred. 2. **PCM Format**: Assume 16-bit signed integer PCM, Little Endian. Use `readInt16LE` and `writeInt16LE` for stream I/O. 3. **Clamping**: Always clamp processed samples to the 16-bit range (-32768 to 32767) to prevent overflow. 4. **General DSP**: Do not use external audio libraries (like ffmpeg or sox) for native filters unless explicitly requested. # Filter: Stereo Rotation (Panning) - **Input**: 16-bit Little Endian PCM **stereo**.

What's inside
Steps it walks through
  1. Prompt
  2. Triggers
More from AutoSkill
All skills →
About this skill
What does the native_audio_dsp_filter_implementation skill do?

Implement native Node.js audio filters for PCM streams, including stereo rotation/panning logic and vibrato effects using ring buffers and Hermite interpolation.

How do I install it?

Run `npx skills add ECNU-ICALK/AutoSkill --skill native_audio_dsp_filter_implementation --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 ECNU-ICALK/AutoSkill, a repository with 539 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