分析任意 YouTube 视频,提取关键信息,去除冗余内容,并提供附带相关链接的可执行摘要。
node analyze.js --url "https://youtube.com/watch?v=..."
const { analyzeVideo } = require('./analyze');
const result = await analyzeVideo('https://youtube.com/watch?v=...');
console.log(result.summary);
console.log(result.keyPoints);
console.log(result.resources);
youtube-transcript 技能的 OpenClaw/Clawdbotvideo-transcript-downloader 技能{
"title": "视频标题",
"channel": "频道名称",
"summary": "去除冗余内容后的清晰摘要...",
"keyPoints": [
"主要观点 1",
"主要观点 2"
],
"resources": [
{
"name": "工具名称",
"url": "https://...",
"context": "提及该工具的原因"
}
],
"topics": ["人工智能", "编程", "工具"]
}
MIT - OpenClaw