Best use case
audio-play is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Play audio files using Windows media player. Non-blocking execution.
Teams using audio-play should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/audio-play/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How audio-play Compares
| Feature / Agent | audio-play | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Play audio files using Windows media player. Non-blocking execution.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Marketing
Discover AI agents for marketing workflows, from SEO and content production to campaign research, outreach, and analytics.
AI Agents for Startups
Explore AI agent skills for startup validation, product research, growth experiments, documentation, and fast execution with small teams.
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
SKILL.md Source
# Audio Play
## Usage
```bash
python scripts/audio_play.py <audio_path> [--config player_config.json]
```
## Parameters
- `audio_path` (required): Absolute path to audio file
- `config` (optional): Player configuration file
## Player Config (player_config.json)
```json
{
"player": "vlc",
"player_path": "C:/Program Files/VideoLAN/VLC/vlc.exe"
}
```
## Returns
```json
{
"success": true,
"audio_path": "H:/works/audio/xxx.mp3",
"player_used": "vlc",
"duration": 1200
}
```
## Tools
## play_audio
Play audio file with media player
## Workflow Integration
This skill is part of the YouTube translation workflow:
1. **youtube-audio-download**: Download audio from YouTube
2. **doubao-launch**: Launch Doubao translation window
3. **audio-play**: Play the downloaded audio
4. **doubao-capture**: Capture translated subtitles
## Execution
All skills execute on Windows Python via WSL cross-platform call:
```
wsl -> python.exe scripts/audio_play.py ...
```
## Error Handling
All skills return JSON with `success` field:
- `success: true` - Operation completed
- `success: false` - Check `error_code` and `error_message`
## Notes
- Windows GUI automation requires visible desktop (no RDP disconnect)
- Output files are stored in Windows `works/` directory
- WSL accesses Windows files via `/mnt/h/...`Related Skills
Product Launch Playbook
You are a Product Launch Strategist. You guide users through planning, executing, and optimizing product launches — from pre-launch validation through post-launch growth. This system works for SaaS, physical products, services, marketplaces, and content products.
M&A Playbook — Merger & Acquisition Framework
You are a mergers and acquisitions advisor. When the user asks about M&A — buying a company, selling their business, due diligence, deal structuring, integration planning, or valuation — use this framework.
Incident Response Playbook
Structured incident response for business and IT teams. Guides you through detection, triage, containment, resolution, and post-mortem — with auto-generated timelines and action items.
Debt Collection & Recovery Playbook
Generate compliant debt recovery strategies, collection letter sequences, and payment plan frameworks.
Customer Success Playbook
Build and run a customer success operation for B2B SaaS. Covers the full lifecycle: onboarding, health scoring, QBRs, churn prevention, and expansion revenue.
Crisis Management & Communications Playbook
You are the Crisis Management Officer — a specialized agent that helps organizations detect, respond to, contain, and recover from business crises. You provide structured frameworks for PR incidents, data breaches, operational failures, legal threats, executive departures, financial shocks, and reputational damage.
Crisis Communication Playbook
Generate a crisis communication plan with holding statements, stakeholder messaging, media responses, and internal comms templates.
AI Agent Manager Playbook
Your company deployed AI agents. Now what? This skill turns you into the person who actually makes them productive — the Agent Manager.
问专家技能 - 使用 Playwriter 控制已登录的浏览器
## 技能描述
cyber-ir-playbook
Build incident response timelines and report packs from event logs. Use for detection-to-recovery reporting, phase tracking, and stakeholder-ready incident summaries.
youtube-audio-download
Download YouTube video audio and convert to MP3. Supports age-restricted videos with cookies.
audio-rename
Rename audio files with Chinese/special characters to simple English names for mlx-stt compatibility.