Install
openclaw skills install videoanalyzerDownload videos, extract transcripts, capture frames. Analyze YouTube, tutorials, DD videos with yt-dlp + Whisper + ffmpeg.
openclaw skills install videoanalyzerDownload, transcribe, and screenshot videos for analysis.
brew install yt-dlp ffmpeg openai-whisper
./scripts/analyze.sh "https://youtube.com/watch?v=..."
outputs/
├── video.mp4 # Downloaded video
├── audio.mp3 # Extracted audio
├── transcript.txt # Plain text
├── transcript.srt # Subtitles
└── frames/ # Screenshots every 30s
./scripts/analyze.sh "URL" [output-dir] [frame-interval] [whisper-model]
./scripts/summarize.sh ./outputs/transcript.txt
Or with AI:
cat outputs/transcript.txt | clawdbot ask "Summarize this"
config.json:
{
"whisper_model": "medium",
"frame_interval": 30,
"output_dir": "./outputs"
}