accidwar/youtube-hq-downloader/SKILL.md
Youtube Highest Quality Downloader - Download highest quality silent video and pure audio from YouTube, then merge into video with sound
npx skillsauth add openclaw/skills youtube-hq-downloaderInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Download the highest quality silent video and pure audio from YouTube, then merge into a video with sound using ffmpeg. 从YouTube下载视频的最高清无声版本和纯音频,然后使用ffmpeg合并为有声视频。
# Run the download script directly
python3 ~/clawd/skills/youtube-hq-downloader/download.py "YouTube_URL" [output_directory]
# 1. Enter the skill directory
cd ~/clawd/skills/youtube-hq-downloader
# 2. Create virtual environment (first run)
python3 -m venv .venv
source .venv/bin/activate
pip install yt-dlp
# 3. Run download and merge
python3 download.py "https://www.youtube.com/watch?v=xxxxx"
# Or run step by step manually
./download.sh "YouTube_URL"
# Activate environment
cd ~/clawd/skills/youtube-hq-downloader
source .venv/bin/activate
# Download video (highest quality, silent)
yt-dlp -f "bestvideo[ext=mp4]" "YouTube_URL" -o "%(title)s_video.%(ext)s"
# Download audio
yt-dlp -x --audio-format m4a "YouTube_URL" -o "%(title)s_audio.%(ext)s"
# Merge video and audio
ffmpeg -i "*.mp4" -i "*.m4a" -c:v copy -c:a aac -shortest "output.mp4" -y
-f "bestvideo": Download highest quality video format (may be WebM or MP4)%(title)s_video.%(ext)s-x: Extract audio--audio-format m4a: Output as M4A format-i "video.mp4" -i "audio.m4a": Input files-c:v copy: Copy video stream, no re-encoding-c:a aac: Convert audio to AAC encoding-shortest: Use shorter duration-y: Overwrite output filebrew install ffmpeg)The script will automatically detect and use system-installed yt-dlp. If not found:
# Manual install yt-dlp
pip install yt-dlp
# Or use uv
pip install uv && uv pip install yt-dlp
A: This is normal. Using bestvideo only downloads the video track. You need to download audio separately and merge.
A: YouTube may have regional or quality restrictions on certain videos. Try other formats like best instead of bestvideo.
A: Make sure ffmpeg is installed: brew install ffmpeg
A: Pass the second parameter as output directory when running the script, or modify the OUTPUT_DIR variable in the script.
tools
Use when the user wants to connect to, test, or use the McDonalds service at mcp.mcd.cn, including checking authentication, probing MCP endpoints, listing tools, or calling McDonalds MCP tools through a reusable local CLI.
development
Web scraping platform — Twitter/X data, Vinted marketplace, and general web scraping API
development
SlowMist AI Agent Security Review — comprehensive security framework for skills, repositories, URLs, on-chain addresses, and products (Claude Code version)
data-ai
去除中文文本中的 AI 写作痕迹,使其读起来自然。基于维基百科 AI 写作特征指南,检测 24 种 AI 模式。触发词:humanizer-cn、去除 AI 痕迹、去除 AI 写作痕迹、中文文本人性化。