youtube_summarizer

(β˜… 214)

A modern Next.js-based tool for AI-powered YouTube video summarization. Features smart chapter detection with clickable timestamps, multi-language support (EN, DE, FR, ES, IT), visual chapter timelines, and full transcript access with markdown export.

  • .dockerignore
  • .env.example
  • .gitignore
  • 2.png
  • 3-full.png
  • components.json
  • docker-compose.yml
  • docker-entrypoint.sh
  • Dockerfile
  • eslint.config.mjs
  • history.png
  • jest.config.js
  • landing.png
  • LICENSE
  • login.png
  • next.config.ts
  • package-lock.json
  • package.json
  • playwright.config.ts
  • postcss.config.mjs
  • prd.json
  • prisma.config.ts
  • progress.txt
  • proxy.ts
  • README.md
  • start.png
  • tailwind.config.ts
  • tsconfig.json
  • wizard1.png
  • wizard2.png

# Installation Guide

1. Get the code
git clone https://github.com/DevRico003/youtube_summarizer

Downloads the entire project code from GitHub to your computer.

cd youtube_summarizer

Moves into the project folder you just downloaded.

2. Docker

Easy Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker-compose up -d

Runs the command against the services defined in the compose file.

βœ… Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.

Pulled directly from this repo's README.

3. Node.js

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Node.js Node.js must be installed to use npm. The LTS version is recommended.
npm install --legacy-peer-deps

Downloads and installs the libraries listed in package.json.

npm run dev

Starts the development/run server.

npm run build

Builds optimized production files.

npm start

Starts the development/run server.

βœ… After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.

Pulled directly from this repo's README.

// repository documentation