48 lines
2.9 KiB
Markdown
48 lines
2.9 KiB
Markdown
---
|
||
title: "Daily YouTube Digest"
|
||
type: source
|
||
tags: []
|
||
date: 2026-04-27
|
||
---
|
||
|
||
## Source File
|
||
- [[raw/Agent/usecases/daily-youtube-digest.md]]
|
||
|
||
## Summary(用中文描述)
|
||
- 核心主题:AI Agent 每日自动抓取订阅频道新视频,通过 TranscriptAPI 获取字幕并生成摘要,定时推送个性化简报
|
||
- 问题域:YouTube 算法推送不靠谱,订阅频道的新视频经常被淹没;用户想每天用精选内容洞察开启新的一天,而不是刷推荐流浪费时间
|
||
- 方法/机制:youtube-full skill → channel/latest 检查新视频(免费)→ TranscriptAPI 获取字幕(1 credit/条)→ AI 摘要生成 → 定时/按需推送
|
||
- 结论/价值:TranscriptAPI 比 yt-dlp 更适合 Agent 环境(无日志洪水、跨平台兼容、防封禁);仅检查新上传免费,生成摘要才消耗积分
|
||
|
||
## Key Claims(用中文描述)
|
||
- YouTube 通知系统不可靠,订阅频道的新视频经常被算法埋没,用户实际上想看但看不到
|
||
- 每日用精选内容洞察开启一天,比刷推荐信息流更有价值
|
||
- channel/latest 和 channel/resolve 完全免费(0 credit),仅生成摘要才消耗积分
|
||
- TranscriptAPI 相比 yt-dlp 在 Agent 场景下优势明显:无日志洪水、支持云端/本地、支持全部平台、防封禁
|
||
|
||
## 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." — YouTube 通知系统的核心痛点
|
||
> "That's it. The agent handles the rest — including account creation and API key setup." — OpenClaw 自动化安装的承诺
|
||
|
||
## Key Concepts
|
||
- [[DailyDigest]]:定时推送的个性化内容摘要,本文档的核心概念
|
||
- [[ContentCuration]]:内容策展,从海量信息中精选符合用户兴趣的高价值内容
|
||
|
||
## Key Entities
|
||
- [[OpenClaw]]:运行 AI Agent 的平台,youtube-full skill 的宿主
|
||
- [[TranscriptAPI]]:字幕获取 API,比 yt-dlp 更适合 Agent 环境,提供干净 JSON 响应和全球缓存服务
|
||
- [[YouTube]]:视频内容来源,支持通过频道 handle 或关键词搜索
|
||
- [[Recapio]]:商业竞品产品,提供每日 YouTube 摘要功能
|
||
|
||
## Connections
|
||
- [[YouTube Content Pipeline]] ← extends ← [[Daily YouTube Digest]]
|
||
- [[Multi-Source Tech News Digest]] ← similar_to ← [[Daily YouTube Digest]]
|
||
- [[YouTube Content Pipeline]] ← uses ← [[TranscriptAPI]]
|
||
|
||
## Contradictions
|
||
- 与 [[Multi-Source Tech News Digest]] 功能重叠但互补:
|
||
- 冲突点:两者都提供每日内容摘要
|
||
- 当前观点:Daily YouTube Digest 专注 YouTube 视频内容,通过 TranscriptAPI 获取深度字幕摘要
|
||
- 对方观点:Multi-Source Tech News Digest 覆盖多来源(RSS/博客/新闻),范围更广但深度较浅
|
||
- 共存建议:两者可并行使用,YouTube 视频适合深度学习场景,多来源摘要适合快速扫读
|