Files
nexus/wiki/sources/daily-youtube-digest.md
2026-04-22 16:03:25 +08:00

59 lines
3.9 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "Daily YouTube Digest"
type: source
tags: []
date: 2026-04-22
---
## Source File
- [[Agent/usecases/daily-youtube-digest]]
## Summary用中文描述
- 核心主题AI Agent 每日 YouTube 频道视频摘要推送——自动获取订阅频道最新视频、提取字幕、生成要点摘要,以 Digest 形式定时送达用户
- 问题域YouTube 通知不可靠(算法压制)、刷推荐内容浪费时间、难以系统性追踪感兴趣的创作者更新
- 方法/机制:
- 通过 [[OpenClaw]] 的 `youtube-full` skill 安装并配置 TranscriptAPI.com API100 免费积分,无需信用卡)
- AI Agent 定期检查频道最新上传 → 提取字幕 → 摘要 → 发送 Digest
- 支持两种模式:频道列表模式(指定 @TED/@Fireship 等)+ 关键词模式(搜索 "Claude Code"/"AI agents" 等)
- seen-videos.txt 机制避免重复处理
- `channel/latest``channel/resolve` API 免费0 积分仅字幕抓取收费1 积分/视频)
- 结论/价值把算法推荐的被动消费doom-scrolling转变为系统化的主动学习用 AI 把"没时间看视频"变成"每天花 10 分钟获取精华"
## Key Claims用中文描述
- YouTube 通知不可靠:订阅频道的新视频不会出现在通知或首页推荐中,被算法压制
- 每日 Digest 是对抗信息过载的有效策略:不是每条视频都值得看,但值得知道它们的存在
- TranscriptAPI.com 优于 yt-dlp纯 HTTP API、无二进制依赖、跨平台可靠、支持缓存、不易被 YouTube 封禁
- 频道检查channel/latest完全免费只需在有字幕的感兴趣视频上花费积分
- 已存在商业产品Recapio - Daily YouTube Recaprecapio.com
## Key Quotes
> "You subscribe to channels, but their new videos never show up in your home feed. They're not in notifications. They just... disappear." — 痛点描述
> "It's fun to start the day with curated content insights instead of doom-scrolling a recommendation feed." — 价值主张
> "This way you never waste credits re-fetching videos you've already seen." — 避免重复处理
## Key Concepts
- [[Daily-Digest]]:定时将多个信息源的最新内容打包推送给用户的模式,替代实时通知的碎片化消费
- [[Transcript-Based Summarization]]:通过视频字幕提取 + AI 摘要实现视频内容的结构化处理,绕过长视频消费的"没时间"困境
- [[Channel-Based Monitoring]]:以订阅频道为单位跟踪新内容,而非依赖平台推荐算法
- [[Keyword-Based Monitoring]]:以关键词为触发条件搜索新内容,适合跟踪特定主题或竞品动态
- [[Credit-Efficient Processing]]:优化 API 调用策略(免费检查优先、按需付费摘要),降低 AI 消费成本
## Key Entities
- [[OpenClaw]]:多 Agent 框架,支持持久记忆和工作流编排,运行 youtube-full skill
- [[ClawHub]]clawhub.aiOpenClaw skill 市场,托管 youtube-full 等 Agent 技能包
- [[TranscriptAPI.com]]YouTube 字幕 API 服务商YouTubeToTranscript.com 的背后技术),提供 HTTP API 替代 CLI 工具100 免费积分
- [[Recapio]]:商业竞品产品,提供 Daily YouTube Recap 功能recapio.com
## Connections
- [[OpenClaw]] ← runs ← [[youtube-full skill]]
- [[youtube-full skill]] ← uses ← [[TranscriptAPI.com]]
- [[Daily YouTube Digest]] ← similar_to ← [[multi-source-tech-news-digest]]
- [[Daily YouTube Digest]] ← extends ← [[second-brain]] (信息摄入层)
## Contradictions
- 与 [[实战笔记-本地部署-rsshub-并获取-youtube-订阅]] 可能存在重叠:
- 冲突点:两者都提供 YouTube 订阅内容追踪
- 当前观点Daily YouTube DigestAI Agent 自动抓字幕 + 摘要,主动推送 Digest
- 对方观点RSSHub通过 RSS 标准协议追踪更新适合工作流集成n8n无 AI 摘要
- 补充RSSHub 方案适合被动监控AI Digest 方案适合主动学习,两者互补