← All skills
Tencent SkillHub · Other

Video Intelligence

Download videos and get transcripts, summaries, or metadata from YouTube, TikTok, Instagram, and X (Twitter). Use when the user shares a video URL and wants...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Download videos and get transcripts, summaries, or metadata from YouTube, TikTok, Instagram, and X (Twitter). Use when the user shares a video URL and wants...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
scripts/video-intel.sh, scripts/parse-vtt.py, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

video-intel

Downloads videos and extracts transcripts using yt-dlp (captions) with OpenAI Whisper fallback.

Required Dependencies

DependencyPurposeRequired?yt-dlpFetch captions and download audio/video✅ Alwayspython3Parse VTT/SRT caption files✅ AlwayscurlCall OpenAI Whisper API✅ For Whisper fallbackffmpegExtract audio from TikTok/Instagram/X⚠️ Non-YouTube onlyOPENAI_API_KEYAuthenticate with OpenAI Whisper API⚠️ Only if captions unavailable Install binaries: # yt-dlp curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o ~/bin/yt-dlp && chmod +x ~/bin/yt-dlp # ffmpeg (Debian/Ubuntu) sudo apt install ffmpeg

⚠️ Privacy Notice — OpenAI Audio Upload

When captions are unavailable (common for TikTok, Instagram, X), the script downloads the audio and uploads it to OpenAI's transcription API (https://api.openai.com/v1/audio/transcriptions). This means: Audio content leaves your machine and is sent to OpenAI Requires OPENAI_API_KEY to be set If you don't want external transmission: don't set OPENAI_API_KEY, or use a local transcription model YouTube videos almost always have captions and will not trigger an upload.

Script

~/.openclaw/skills/video-intel/scripts/video-intel.sh

Get transcript

~/.openclaw/skills/video-intel/scripts/video-intel.sh transcript <url> YouTube: uses built-in captions/auto-subs (fast, no audio download or external upload) TikTok/Instagram/X: downloads audio → uploads to OpenAI Whisper for transcription Preferred language: --lang pt for Portuguese

Get video info

~/.openclaw/skills/video-intel/scripts/video-intel.sh info <url>

List available caption tracks

~/.openclaw/skills/video-intel/scripts/video-intel.sh captions <url>

Download video

~/.openclaw/skills/video-intel/scripts/video-intel.sh download <url> [--format audio|720p|best]

After getting transcript

Summary: Summarize in 3-5 bullet points Key quotes: Extract most notable quotes Full summary: Write a paragraph summary with context Translation: Translate to the user's language if different

Notes

YouTube auto-captions are usually available even without ffmpeg TikTok/Instagram/X require ffmpeg for audio extraction Large videos (>25MB audio) may hit OpenAI's file size limit — use --format audio to get a smaller mp3 Output cached in /tmp/video-intel/ by default

Category context

Long-tail utilities that do not fit the current primary taxonomy cleanly.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Scripts1 Docs
  • SKILL.md Primary doc
  • scripts/parse-vtt.py Scripts
  • scripts/video-intel.sh Scripts