VidWiz transforms how you learn from YouTube videos by combining two powerful AI-driven features:
Smart Notes - Stop pausing to type. VidWiz automatically extracts insights and creates timestamp-linked notes, building your personal knowledge vault. AI captures the core concepts while you stay focused on learning.
Wiz - Ask questions instead of scrubbing through timelines. This conversational AI assistant answers based on the video transcript, providing context-aware responses with precise jump-links to relevant moments.
The platform is built with:
- Frontend: React (Vite) with TypeScript and Tailwind CSS
- Backend: FastAPI (Python) REST API
- Database: PostgreSQL for data persistence
- AI/LLM: OpenAI/Gemini models for intelligent note generation and wiz chat
- Cloud: AWS (SQS for async processing, S3 for storage)
1. Smart Notes - Automatic Knowledge Capture
- Auto-Extraction: AI automatically captures core insights from any timestamp
- Precision Timestamps: Click any note to jump directly to that moment in the video
- Rich Metadata: Thumbnails, channel info, view counts, and duration tracking
2. Wiz - Conversational Video Intelligence
- Ask in plain English: Ask questions in plain English, get expert answers
- Context-Aware: Wiz understands the video content and watches alongside you
- Deep Jump-Links: Click on answers to play the exact video moment
- Browser Extension: Works with any Chromium-based browser (Chrome, Edge, Brave, etc.)
- Web Dashboard: Modern UI for managing notes and videos
- Android: Integration via Macrodroid macros
- iOS: Integration via Shortcuts automation
- Self-Hosted Deployments: Run VidWiz on your infrastructure and control where data lives.
- Pluggable AI: Choose Gemini or OpenAI via environment configuration.
- Token-Based Access: Extension login syncs from the web app; long-term tokens support mobile automations.
VidWiz uses a layered backend to keep request handling thin and domain logic centralized, with workers and Lambdas for async processing:
Clients (Extension/Web/Mobile)
↓
FastAPI REST API (routers/controllers)
↓
Service layer (domain logic)
↓
PostgreSQL ←→ Workers + AWS Services
│ ├─ Task queue (DB) -> Helpers (transcript/metadata)
│ ├─ SQS (Async task queues) -> Lambdas (AI notes/summary)
│ └─ S3 (Transcripts)
Quick start Prereqs: Python 3.10–3.13, Node.js, Poetry, running PostgreSQL
cd backend- Install dependencies:
poetry install - Configure
.env(use.env.exampleas reference). For required environment variables, seedocs/backend.md. - Start server:
poetry run uvicorn src.main:app --host 0.0.0.0 --port 5000
Backend note creation supports:
POST /v2/videos/{video_id}/notesfor known video IDs/URLsPOST /v2/notes/by-titleto resolve a YouTube video fromvideo_titleand save against the top result
cd frontend- Install dependencies:
npm install - Start development server:
npm run dev
- Load unpacked from
extension/in a Chromium browser (chrome://extensions→ Developer mode → Load unpacked) - Configure deployment URLs in
extension/popup.js:CONSTANTS.API.BASE_URLCONSTANTS.API.API_URL
- Configure your web origin for web-to-extension auth sync:
extension/manifest.json→externally_connectable.matchesextension/background.js→CONSTANTS.ORIGINS.PROD
- Set the extension ID used by the web app:
frontend/src/config.ts→EXTENSION_ID(production must be a real ID, not placeholder)
- Reload both extension and web app, then log in on the web app
- Open the extension popup; it auto-unlocks when token sync succeeds
The extension note UI appears on supported YouTube watch pages after sync.
- Backend:
cd backend && poetry run pytest
vidwiz/
├── backend/ # FastAPI backend
│ ├── src/ # App modules (routers, services, schemas, models)
│ ├── workers/ # Background workers and lambdas
│ ├── infra/ # Systemd/service unit files for helpers
│ └── wsgi.py # ASGI entrypoint
├── frontend/ # React + Vite web app
│ └── src/
│ ├── pages/ # Route-level views
│ ├── components/ # Reusable UI components
│ └── public/ # Static assets
└── extension/ # Chromium browser extension
├── manifest.json
├── popup.*
└── icons/
- Smart Notes feature with AI auto-extraction
- Wiz conversational AI assistant
- Lambda workflow optimization
- SQS async task processing
- Glassmorphic UI/UX redesign
- Multi-platform support (Extension, Web, iOS, Android)
- Move backend from Flask to FastAPI
- Proper CI/CD workflows for backend and frontend
- Cloud-hosted SaaS offering with credits model
- Semantic search across notes and videos
- Universal export (Markdown, PDF)
- Bring-your-own AI key(BYOK) support
vidwiz.mp4
Rich note-taking with timestamp navigation and video metadata
AI-powered note generation and intelligent assistance for your learning journey