Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计提醒

video-knowledge-ingest视频知识摄取

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

6,350

周安装

270

GitHub Stars

公开资料未说明

下载量

2,225
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:video-knowledge-ingest(视频知识摄取)
来源仓库:https://github.com/exsusiai/video-knowledge-ingest
安装命令:
openclaw skills install video-knowledge-ingest
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install video-knowledge-ingest

简介

用于跨平台视频摄取并总结到本地知识库,便于后续检索与分析。

  • 支持 YouTube、Bilibili、小红书及本地媒体/字幕文件处理。
  • 上传视频链接或文件后,系统自动提取内容并生成结构化摘要。
  • 安装方式:clawhub;适用宿主:OpenClaw;注意网络访问权限与内容来源合法性。
  • video-knowledge-ingest 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
video-knowledge-ingest
description
Ingest and summarize cross-platform videos into a local knowledge base. Use when working with YouTube, Bilibili, Xiaohongshu, or local media/subtitle files and you need to fetch subtitles when available, fall back to yt-dlp download + ffmpeg + Whisper transcription when subtitles are missing, generate a text summary, and save transcript/summary/metadata into local files. Also use when packaging this workflow for sub-agents or debugging failures such as subtitle 429s, Bilibili share-link 403s, YouTube anti-bot issues, Xiaohongshu no-subtitle cases, missing ffmpeg/yt-dlp/Whisper dependencies, or summarize/codex auth problems.

Video Knowledge Ingest

Use this skill as the default cross-platform video → transcript → summary → local-knowledge workflow.

Quick start

  1. Run the bundled entrypoint:

- skills/video-knowledge-ingest/scripts/video-ingest.sh "<url-or-local-file>"

  1. Read the JSON stdout for paths.
  2. Send the summary back to the user from summary.md.
  3. Keep the stored files in the local knowledge base; do not move them unless asked.

Default knowledge-base root:

  • /home/jason/.openclaw/workspace/knowledge/video-notes/

What this skill invokes

Core tools in the normal path:

  • yt-dlp — resolve metadata, fetch subtitles, or download media
  • ffmpeg / ffprobe — normalize audio before transcription
  • bundled scripts/whisper-gpu.sh — local Whisper transcription using the workspace GPU venv
  • summarize --cli codex — generate the final written summary
  • local filesystem — persist transcript, summary, metadata, and index entries

Platform-specific notes:

  • YouTube: prefer subtitles when available; fall back to media download + Whisper
  • Bilibili: often falls back to Whisper; the script auto-normalizes bilibili.com/... to www.bilibili.com/... and strips spm_ tracking params
  • Xiaohongshu: usually no subtitles; expect media download + Whisper
  • Local subtitle/text files: skip download and summarize directly
  • Local media files: skip yt-dlp; go straight to Whisper

Workflow

1. Normalize the source

  • If the input is a URL, use the bundled normalizer.
  • Keep YouTube timing parameters (t, start, list, index) but drop common tracking params.
  • For Bilibili, force www.bilibili.com and remove spm_* query params.

2. Try subtitles first

  • Run yt-dlp in subtitle-only mode.
  • Prefer zh.* and en.* subtitles.
  • Treat subtitle download as best effort.
  • If any usable .srt / .vtt file lands, continue with that file even if another subtitle variant returned a non-zero exit code.

3. Fall back to media + Whisper

If no usable subtitles land:

  • Download best audio/media with yt-dlp
  • Transcribe with bundled scripts/whisper-gpu.sh
  • If GPU transcription fails, the script falls back to CPU automatically

4. Summarize

  • Summarize the resulting transcript with summarize --cli codex --force-summary
  • Expect codex to be installed and logged in, or configure the summarize backend another way before use

5. Persist results

For each ingested item, keep these files:

  • source.url or source.path
  • source.info.json
  • downloads/ (when remote media/subtitles are fetched)
  • whisper/ (when Whisper was used)
  • transcript.txt
  • summary.md
  • record.json
  • global append-only index: knowledge/video-notes/index.jsonl

Common commands

Remote URL:

skills/video-knowledge-ingest/scripts/video-ingest.sh "https://www.youtube.com/watch?v=..."
skills/video-knowledge-ingest/scripts/video-ingest.sh "https://bilibili.com/video/BV..."
skills/video-knowledge-ingest/scripts/video-ingest.sh "https://www.xiaohongshu.com/explore/..."

Local files:

skills/video-knowledge-ingest/scripts/video-ingest.sh /path/to/file.srt
skills/video-knowledge-ingest/scripts/video-ingest.sh /path/to/file.mp4

Custom output root:

skills/video-knowledge-ingest/scripts/video-ingest.sh "<source>" --kb-root /some/other/root

When to read bundled references

Read references/toolchain.md when you need:

  • dependency details
  • exact file layout
  • how each tool is used in the pipeline

Read references/troubleshooting.md when you hit:

  • YouTube anti-bot / cookies issues
  • Bilibili 403 on shared links
  • subtitle 429 / partial subtitle failures
  • Xiaohongshu subtitle absence
  • summarize / codex auth failures
  • Whisper venv, CUDA, ffmpeg, or yt-dlp problems

Operating rules

  • Prefer the bundled scripts/video-ingest.sh entrypoint over re-implementing the workflow.
  • Do not skip the local knowledge-base write unless explicitly asked.
  • When a run fails, inspect the generated directory before declaring total failure; partial artifacts often explain the real issue.
  • If a platform provides subtitles, prefer them over Whisper.
  • If subtitles are absent or unusable, fall back to media + Whisper automatically.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

80.48%
按下载量换算1,791

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills