Video Summarizer
Installation
SKILL.md
Overview
This skill transcribes and summarizes video content by running the python -m summarizer CLI tool. It handles YouTube (captions or audio), local files, Google Drive, and Dropbox. Transcripts are chunked, processed in parallel through an OpenAI-compatible LLM, and merged into a final summary.
IMPORTANT: Always use the CLI command below. Never try to fetch, scrape, or download video URLs directly (e.g., with webfetch or curl). The CLI handles all downloading, transcription, and summarization internally.
Quick Start (Step-by-Step)
Follow these steps exactly:
Step 1 -- Run the CLI:
python -m summarizer --source "VIDEO_URL"
The tool uses the default provider from summarizer.yaml (already configured). No extra flags needed for basic usage.
Step 2 -- Read the output file:
Related skills