Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

youtube-model-feederyoutube 模型喂食器

Agent Skill

youtube-model-feeder 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,904

周安装

251

GitHub Stars

1

下载量

2,068
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:youtube-model-feeder(youtube 模型喂食器)
来源仓库:https://github.com/celstnblacc/youtube-model-feeder
安装命令:
openclaw skills install youtube-model-feeder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install youtube-model-feeder

简介

模型的食物——从 YouTube 视频中提取文本、关键帧、OCR、幻灯片和 LLM 摘要,将其转化为结构化的 AI 就绪知识。

SKILL.md

name
YouTube Model Feeder
description
Food for your model — extract transcripts, key frames, OCR, slides, and LLM summaries from YouTube videos into structured AI-ready knowledge.
version
1.0.0
emoji
🧠
homepage
https://github.com/celstnblacc/youtube-model-feeder
user-invocable
true
disable-model-invocation
false
requires
bins
["docker"]
anyBins
["ffmpeg"]
env
[]

YouTube Model Feeder

Food for your model.

Stop pausing videos every 30 seconds to screenshot, paste into Obsidian, and caption. Every 20-minute tutorial shouldn't take an hour to document.

YouTube Model Feeder extracts everything from a YouTube video — timestamped transcript, key frame snapshots, OCR of code and slides, presentation slide detection, and LLM-generated summaries — and packages it into structured knowledge your AI assistant can search, reference, and reason about.

Why This Exists

The problem isn't transcription — ten tools do that. The problem is structured context. When you feed a raw transcript to a model, it has no visual context. It doesn't know what was on screen when the speaker said "as you can see here." It can't read the code in the terminal, the diagram on the slide, or the config file being edited.

YouTube Model Feeder captures all of that. The output isn't just text — it's a knowledge bundle: transcript segments aligned to timestamps, screenshots of every key moment, OCR text from code snippets and slides, and an LLM summary that ties it all together.

Combined with obsidian-semantic-search (also on ClawHub), every video you watch becomes permanently searchable by meaning in your Obsidian vault.

What It Extracts

Full Pipeline

StepToolWhat it produces
Downloadyt-dlpVideo + audio + metadata (title, duration, thumbnail)
TranscribeWhisper (Ollama) or YouTube captionsTimestamped transcript segments
Frame ExtractionFFmpegKey frame snapshots every 5s (configurable)
Slide DetectionSSIM analysis (OpenCV)Identifies presentation slides via structural similarity between frames
OCRTesseractReads code, terminal output, and text from captured frames
LLM SummaryOllama / OpenAI / AnthropicStructured markdown with sections, code blocks, and key takeaways

Slide Detection (Deep)

Not just frame captures — intelligent slide boundary detection:

  1. Layout detection — classifies video as full-frame, picture-in-picture, or split panel
  2. SSIM transition scan — compares consecutive frames for structural changes (threshold: SSIM < 0.85)
  3. LLM disambiguation — borderline transitions (0.85–0.93 SSIM) sent to LLM for classification
  4. Slide grouping — merges transitions into slides with enforced minimum duration (3s)
  5. Final-state capture — saves the last frame of each slide as JPEG
  6. OCR extraction — runs Tesseract on each slide image
  7. Transcript alignment — maps transcript segments to slide time ranges

Output Formats

FormatWhat you get
MarkdownTimestamped sections with headings, code blocks, image references
HTMLStyled single-page doc with embedded screenshots
Obsidian bundleZIP export: markdown + images, ready to drop into your vault

Installation

Prerequisites

# macOS
brew install ffmpeg tesseract

# Linux
apt install ffmpeg tesseract-ocr

Docker Desktop must be running for the full backend.

Start the Stack

git clone https://github.com/celstnblacc/youtube-model-feeder.git
cd youtube-model-feeder
docker-compose up -d

This starts 5 services:

ServicePortPurpose
api8000FastAPI backend + Swagger docs at /docs
celery_workerBackground video processing
postgres5432Job tracking, transcripts, documents
redis6379Task queue (Celery broker)
web3000Next.js frontend (optional)

Verify

Open http://localhost:8000/docs — you should see the Swagger API documentation.

Usage

Via AI Assistant

Extract a video:

"Extract everything from this YouTube video and save it to my vault: https://youtube.com/watch?v=..."

Transcript only:

"Get the timestamped transcript for this video"

Slides and code screenshots:

"Extract all the code screenshots and presentation slides from this tutorial"

Obsidian export:

"Convert this video into an Obsidian note with screenshots and timestamps"

Via API

# Submit a video for processing
curl -X POST http://localhost:8000/jobs \
  -H "Content-Type: application/json" \
  -d '{"url": "https://youtube.com/watch?v=dQw4w9WgXcQ"}'

# Check job status
curl http://localhost:8000/jobs/{job_id}

# Get the generated document
curl http://localhost:8000/videos/{video_id}

Via Web UI

Open http://localhost:3000, paste a YouTube URL, and watch the extraction happen in real time with progress tracking.

LLM Provider Selection

Per-user configuration — choose your summarization engine:

ProviderModel (default)SetupCost
Ollama (default)Mistral 7BPre-installed locallyFree
OpenAIGPT-4o-miniSet OPENAI_API_KEYPer-token
AnthropicClaude Sonnet 4.6Set ANTHROPIC_API_KEYPer-token

Configure via the API: PATCH /settings/me with your preferred provider and API key (encrypted at rest with Fernet).

The Knowledge Pipeline

YouTube Model Feeder is designed to work with other ClawHub skills:

YouTube Video
  → youtube-model-feeder (extract transcript + snapshots + OCR + summary)
    → Obsidian vault (structured markdown + images)
      → obsidian-semantic-search (index with embeddings, search by meaning)
        → Your AI assistant (full context from every video you've ever watched)

Every video becomes permanent, searchable knowledge. Not buried in a playlist — indexed and queryable.

Architecture

youtube-model-feeder/
├── backend/           # FastAPI + Celery (Python 3.12)
│   ├── app/
│   │   ├── services/  # Core extraction pipeline (6372 LOC)
│   │   │   ├── youtube.py          # yt-dlp wrapper
│   │   │   ├── transcript.py       # Whisper + YouTube captions
│   │   │   ├── snapshot.py         # FFmpeg frame extraction
│   │   │   ├── slide_detection.py  # SSIM + OCR + alignment (643 LOC)
│   │   │   ├── llm.py             # Summarization engine (1229 LOC)
│   │   │   └── llm_providers.py   # Ollama/OpenAI/Anthropic abstraction
│   │   ├── routes/    # REST API endpoints
│   │   └── tasks.py   # Celery background jobs
├── frontend/          # Next.js 14 + React 18 + Tailwind + Zustand
├── docker-compose.yml # 5 services
└── migrations/        # Alembic database migrations

Troubleshooting

ProblemFix
VirusTotal "suspicious" warning on installFalse positive — skill describes video extraction patterns. Use clawhub install youtube-model-feeder --force
Docker services won't startEnsure Docker Desktop is running. Check docker-compose logs api for errors
Transcription is slowFirst run pulls the Whisper model (~1.5 GB). Subsequent runs are fast. Try YouTube captions first (faster, no model needed)
No slides detectedSSIM threshold may need tuning for your video type. Presentation-style videos work best
LLM summary is emptyCheck LLM provider config. Default is Ollama — ensure Ollama is running with a model pulled
FFmpeg not foundbrew install ffmpeg (macOS) or apt install ffmpeg (Linux)

Links

  • Source: https://github.com/celstnblacc/youtube-model-feeder
  • Obsidian Semantic Search: https://clawhub.ai/skills/obsidian-semantic-search
  • License: MIT-0 (this skill) / Apache 2.0 (source)

*Built by celstnblacc — food for your model. 226 tests, 6 extraction stages, 3 LLM providers, Obsidian-ready output.*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

95.2%
按下载量换算1,969

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills