Install
openclaw skills install @pry520okgpt/douyin-super-agentopenclaw skills install @pry520okgpt/douyin-super-agent一句话: 丢一个抖音链接,自动给你提取文案。纯免费,零付费依赖。
| 功能 | 说明 |
|---|---|
| 抖音视频解析 | 标题、ID、下载链接(MCP) ✅ |
| 音频转写 | 任意音频 → 语音识别 ✅ |
| 三级 ASR 降级 | qwen-asr(远程优先)→ whisper-medium(本地降级)→ 腾讯云(备选) ✅ |
| 文案自动纠错 | 擎天柱/铁疙瘩/Grok 等 10+ 常见错别字 ✅ |
| 视频下载 | MCP 直链下载 ⚠️ 依赖 MCP 稳定性 |
| 依赖 | 用途 | 网络 | 凭据 |
|---|---|---|---|
| Python 3.10+ | 运行环境 | 安装时 | 无 |
| faster-whisper | 本地 ASR | 首次下载模型 | 无 |
| ffmpeg | 音频提取 | 安装时 | 无 |
| 依赖 | 用途 | 调用方式 | 降级处理 |
|---|---|---|---|
| mcporter | 抖音解析 | 子进程 | 提示安装 |
| uv | qwen-asr 运行时 | 子进程 | 跳过远程,用本地 |
| qwen-asr skill | 远程 ASR | 子进程脚本 | 本地 whisper |
| tencentcloud-asr | 云备选 | 子进程脚本 | 报错提示 |
| memory-manager | 记忆存储 | 子进程脚本 | 静默忽略 |
| 工具 | 调用方式 | 用途 |
|---|---|---|
mcporter | 子进程 | MCP 客户端 |
curl | Python subprocess | 视频直链下载 |
ffmpeg | Python subprocess | 音频提取 |
uv | Python subprocess | qwen-asr 环境 |
抖音短链接
↓ mcporter parse
标题 + ID + 下载链接
↓ curl / mcporter download
视频文件 (mp4)
↓ ffmpeg
音频文件 (mp3)
↓ qwen-asr / whisper / tencentcloud
识别文本
↓ simplify_text
精简文案 → 保存桌面
| 路径 | 内容 |
|---|---|
~/Desktop/douyin-super-agent/ | 视频/音频/文案 |
~/.cache/whisper/ | whisper 模型 |
chmod +x setup.sh && ./setup.sh
# 完整流程:链接 → 文案
python3 scripts/douyin.py video "https://v.douyin.com/xxx/"
# 仅音频转写
python3 scripts/douyin.py audio audio.mp3
# 查看能力统计
python3 scripts/douyin.py stats
~/Desktop/douyin-super-agent/ 自动保存:
dy_<ID>.mp4 视频dy_<ID>.mp3 音频transcript_<ID>.txt 精简文案result_<ID>.json 结构化结果已知 ASR 错误自动修正:
必选: Python 3.10+, faster-whisper, ffmpeg 可选: uv (qwen-asr), mcporter/douyin-mcp (抖音解析), tencentcloud-asr, memory-manager 模型: whisper-medium (~1.5GB,首次运行自动下载,无需手动干预) 费用: 全部免费,无付费依赖
douyin-super-agent/
├── SKILL.md ← 技能文档(安全声明)
├── README.md ← 详细使用指南
├── requirements.txt ← Python 依赖
├── setup.sh ← 一键安装脚本
└── scripts/
└── douyin.py ← 主程序