Claude-Real-Video: Scene-Aware Frame Extraction + Transcript for Any LLM

Claude-real-video (GitHub) is a Python CLI tool that lets any LLM actually “watch” a video by extracting scene-aware, deduplicated frames and a transcript — all locally, no uploading to external services. Unlike fixed-interval frame sampling (e.g., 1 fps) that over-samples static content and misses fast cuts, this tool uses scene-change detection plus a density floor to capture every meaningful visual change while discarding near-duplicates.
Key Features
- Scene-change detection with configurable sensitivity (
--scene 0.30) - Sliding-window dedup (
--dedup-window 4,--dedup-threshold 8%) — avoids resending the same shot after a cutaway - Density floor (
--fps-floor 1.0) ensures at least one frame every N seconds - Hard cap on total frames:
--max-frames 150 - Whisper transcription with language detection (
--lang autoor specifyen,zh) - Supports URLs (YouTube, Instagram, TikTok, etc.) via yt-dlp and local files
- Outputs a clean folder:
crv-out/frames/*.jpg,crv-out/transcript.txt,crv-out/MANIFEST.txt— drop these into Claude, ChatGPT, or Gemini - Option to generate a visual report of keep/drop decisions (
--report)
Installation
pip install claude-real-video # core (frames + dedup)
pip install "claude-real-video[whisper]" # + audio transcription
System requirement: ffmpeg (install via brew install ffmpeg, sudo apt install ffmpeg, or winget install Gyan.FFmpeg).
Usage Examples
# YouTube/Instagram link
crv "https://www.youtube.com/watch?v=..."
Local file with English transcript
crv lecture.mp4 -o out --lang en
Frames only, no transcript
crv clip.mp4 --no-transcribe
With cookie file for login-gated content
crv "https://..." --cookies cookies.txt
How It Works
The tool uses yt-dlp to fetch URL-based videos (with optional cookies), then ffmpeg extract passes to grab frames at every scene change plus a density floor. A sliding-window near-duplicate detector collapses repeated shots. Audio is transcribed via the Whisper CLI. Everything stays local — no upload to any cloud service.
📖 Read the full source: HN AI Agents
👀 See Also

Leadership App with 90+ Lessons from 20+ Books Runs in Claude
A developer created a leadership app that runs inside Claude, featuring 90+ lessons extracted from 20+ books on leadership, habits, discipline, influence, team culture, and wealth mindset. The app provides daily lessons with specific actions, streak tracking, journaling, and search capabilities.

Lightpanda: Open-source headless browser for LLM agents with native MCP server and markdown output
Lightpanda is an open-source headless browser designed for LLM-powered agents that uses 16x less memory than Chrome (215MB vs 2GB) and completes web crawling benchmarks in 5 seconds instead of 47 seconds. It provides native markdown output, semantic tree with interactivity detection, and a built-in MCP server.

Memento v1.0: Local Persistent Memory for AI Coding Agents
Memento v1.0 is a fully local memory layer for AI coding agents that runs embeddings, storage, and search on your machine with no cloud dependencies. It uses all-MiniLM-L6-v2 embeddings, HNSW indexing, and supports multiple IDEs with 17 MCP tools.

EctoLedger: Open-source microVM sandbox for local AI agents with terminal access
EctoLedger is an open-source runtime firewall and ledger that provides microVM isolation for local AI agents with terminal access, running four prevention layers before executing commands in Apple Hypervisor.framework (macOS) or Firecracker microVM (Linux) environments.