youtube-transcribe — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited youtube-transcribe (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
字幕优先:先抓官方/自动字幕(秒级、免 GPU),抓不到再下载音频用 SenseVoice-Small 转录;英文内容自动翻译成中文,输出中英对照 Markdown。加 --no-subtitle 可强制走音频转录。
YouTube 有大量优质英文内容,但很多人没时间看完或语言不通。这个 skill:
# Python 3.9+
python -m venv .venv
source .venv/bin/activate
# 依赖
pip install funasr modelscope torch torchaudio
# 系统依赖
# macOS: brew install ffmpeg yt-dlp
# Ubuntu: sudo apt install ffmpeg && pip install yt-dlp
# 翻译功能(可选,英文视频需要)
export DEEPSEEK_API_KEY="your-api-key"python scripts/transcribe.py "https://www.youtube.com/watch?v=xxxxx"
python scripts/transcribe.py "https://www.youtube.com/watch?v=xxxxx" --output ./output
python scripts/transcribe.py "https://www.youtube.com/watch?v=xxxxx" --no-translate # 不翻译
python scripts/transcribe.py "https://www.youtube.com/watch?v=xxxxx" --no-subtitle # 强制音频转录yt-dlp --extract-audio --audio-format mp3 --audio-quality 128K \
"https://www.youtube.com/watch?v=xxxxx"from funasr import AutoModel
model = AutoModel(model="iic/SenseVoiceSmall", ...)
result = model.generate(input=audio_path, language="auto", use_itn=True)---
title: 视频标题
type: note
tags: [YouTube]
language: en
translated: true
---
# 视频标题
> 转录引擎:SenseVoice-Small | 翻译:DeepSeek
## 中文翻译
翻译内容...
---
## English Original
原文内容...默认使用 DeepSeek API 翻译。需要设置环境变量:
export DEEPSEEK_API_KEY="your-api-key"支持的 LLM:
| 视频时长 | 下载 | 转录 | 翻译 | 总耗时 |
|---|---|---|---|---|
| 5 min | ~10s | ~5s | ~10s | ~30s |
| 10 min | ~15s | ~10s | ~20s | ~50s |
| 30 min | ~30s | ~30s | ~60s | ~2min |
仅供个人学习与研究使用。请遵守目标平台的服务条款(ToS)与 robots 规则,控制请求频率,不要用于批量抓取、商用爬取或侵犯他人权益的场景。下载内容的版权归原作者所有。
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.