返回 Skill 列表
extension
分类: 内容与媒体无需 API Key

youtube-to-blog-post

当用户希望将YouTube视频转换为博客文章、文章、提纲、通讯草稿或基于文字记录的摘要时。也适用于用户提到重新利用视频、提取文字记录、将YouTube演讲重写为文章或将创作者视频扩展为长篇内容的情况。每当工作流程应该从提取文字记录开始,并通过DumplingAI功能可选地进行来源验证时,都应使用此规则。

person作者: jakexiaohubgithub

YouTube to Blog Post

Overview

Turn a YouTube video into a structured blog post using DumplingAI v2 capabilities.

Allowed Commands

dumplingai run capability get_youtube_transcript --input '{"videoUrl":"https://youtube.com/watch?v=ID"}'
dumplingai run capability google_search --input '{"query":"topic from the video"}'
dumplingai run capability scrape_page --input '{"url":"https://example.com/reference"}'

Workflow

  1. Fetch the transcript first and save it to .dumplingai/transcript.json.
  2. Extract the main argument, audience, examples, and action items.
  3. Verify outside claims with google_search and scrape_page when needed.
  4. Draft a blog post that stays faithful to the transcript and cited sources.

Output Strategy

dumplingai run capability get_youtube_transcript --input '{"videoUrl":"https://youtube.com/watch?v=ID"}' > .dumplingai/transcript.json
dumplingai run capability google_search --input '{"query":"company or concept from the video"}' > .dumplingai/search.json
dumplingai run capability scrape_page --input '{"url":"https://example.com/reference"}' > .dumplingai/reference.json

Read incrementally:

head -80 .dumplingai/transcript.json
rg '"transcript"|"text"|"results"' .dumplingai/transcript.json