ワンクリックで
youtube-video-to-audio
Download YouTube videos as audio files using yt-dlp
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Download YouTube videos as audio files using yt-dlp
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Look up authoritative, up-to-date Claude Code, Agent SDK, hooks, MCP, skills, plugins, settings, subagents, and admin documentation. Use when the user asks how a Claude Code feature works, what a config field does, how to set up hooks/MCP/skills/subagents/plugins, when troubleshooting a Claude Code error or unexpected behavior, or when you need to cite current official docs rather than rely on training-cutoff knowledge.
Maintain the release-history.rst changelog for a Python project before publishing a new version. Use when the user wants to prepare release notes, update changelog, or is about to publish/tag a new version.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
File-based task management with shai-tix CLI. Use when user mentions kanban, ticket, planning, task tracking, or references tickets by [id] or #id format. MUST run via: uvx --from shai-tix==0.1.3 shai-tix <cmd>. Data stored in .tix/ directory (NOT .shai-tix/).
Create properly formatted references to paths (files or folders) in a git repository. Use when writing docs that need to link to any path in the repo.
Python unit testing patterns for pytest, including test file structure, fixtures, mocks, and coverage strategy. Use when asked to write tests (unit/integration) for any Python module, function, class, or method.
| name | youtube-video-to-audio |
| description | Download YouTube videos as audio files using yt-dlp |
Extract and download audio from YouTube videos.
python scripts/download_audio.py --video-url "https://www.youtube.com/watch?v=VIDEO_ID"
--video-url (required) - YouTube video URL to download--quality - Quality selector (default: "bestaudio[abr<=64]/worstaudio")--audio-format - Output format: mp3, aac, wav (default: mp3)--bitrate - Audio bitrate: 64K, 128K, 192K, 320K (default: 64K)--output - Custom output path (default: ~/tmp/download_audio_result.mp3)# Basic usage (default: 64K bitrate MP3 to ~/tmp/download_audio_result.mp3)
python scripts/download_audio.py --video-url "https://www.youtube.com/watch?v=d6rZtgHcbWA"
# High quality with custom bitrate
python scripts/download_audio.py --video-url "https://youtu.be/xyz" --quality "bestaudio" --bitrate "128K"
# Custom output location
python scripts/download_audio.py --video-url "https://youtu.be/xyz" --output "/path/to/output.mp3"
~/ffmpeg