Getting started

Turn Any Video Into a Queryable Brief

6 minute readUpdated June 2026Explore more

TL;DR

The answer you need is at minute 47 of a video you will never rewatch, so the knowledge just rots. Turn it into something you can question instead: transcribe the video with a free yt-dlp plus Whisper stack, load the transcript into NotebookLM so answers stay grounded in your source, then ask questions instead of scrubbing. Hours of video become a brief you query in seconds.

Why video knowledge rots

Video is the worst format to retrieve from - you cannot skim it, and the one line you need is buried somewhere in an hour. So you watch once, forget most of it, and never go back. The fix is to get the words out of the video and into a form you can search and question.

Step 1: transcribe it for free

You do not need a paid service. yt-dlp pulls the audio; Whisper (OpenAI's open transcription model, which runs locally) turns it into text. Both are free and run on your machine, so long or private videos cost nothing and stay yours.

bash# 1. grab the audio
yt-dlp -x --audio-format mp3 -o audio.mp3 "VIDEO_URL"

# 2. transcribe it locally
whisper audio.mp3 --model small --output_format txt

Step 2: load it into NotebookLM

NotebookLM answers only from the sources you give it and cites back to them, so it does not wander off into made-up facts. Drop the transcript in - alongside any related docs - and it becomes a grounded knowledge base for that material.

Step 3: ask instead of scrub

  • Ask direct questions - 'what did they say about pricing?' - and get an answer with a citation to the exact spot.
  • Ask for a brief - the key points, the steps, the claims - so an hour of video becomes a page you actually keep.
  • Load several transcripts at once and question them together, so a playlist becomes one searchable body of knowledge.

Because every answer is grounded in your transcript and cited, you can trust it and jump straight to the source when you want the full context. That is the whole win: the knowledge stops rotting and starts answering.

Common questions

  • Is this really free?

    Yes. yt-dlp and Whisper are both free and run locally, and NotebookLM has a free tier. The only cost is a little compute on your own machine for the transcription step.

  • Why NotebookLM instead of just pasting into a chatbot?

    NotebookLM answers only from the sources you load and cites back to them, so it stays grounded in the actual video instead of filling gaps with invented facts. For 'what did this source say', that grounding is exactly what you want.

  • How accurate is the transcript?

    Very good for clear speech with the smaller Whisper models, and better with larger ones on accents or noisy audio. Start small, check a section, and step up only if errors that matter show up.

  • Can I do this with my own private videos?

    Yes - because transcription runs locally with Whisper, private or unlisted videos never leave your machine for that step. Just be mindful of what you then load into any cloud tool.

Want the transcript-to-brief guide, step by step?

Get 650+ plug-and-play skills, MCPs & prompts, plus 5,000+ builders - $9/mo, cancel anytime.

Join the Club