Automated Video Generator

Installation Guide

How to install and run the Automated Video Generator on Windows, macOS, and Linux.

Windows Standalone (Easiest)

Download the latest .exe installer from the Releases page. Double-click and follow the setup wizard. No Node.js or Python required.

One-Click Launcher (Windows)

Clone the repo and double-click Start-Automated-Video-Generator.bat. The launcher handles dependency installation and starts the web portal automatically.

Manual Setup (All Platforms)

git clone https://github.com/itsPremkumar/Automated-Video-Generator.git
cd Automated-Video-Generator
npm install
pip install -r requirements.txt
cp .env.example .env
npm run dev

Open http://localhost:3001/ in your browser.

Agentic Pipeline (Zero API Keys)

After npm install, you can generate videos immediately without any API keys:

npm run agentic -- --topic "5 benefits of drinking water" --orientation portrait

Output: workspace/jobs/<jobId>/render/<jobId>.mp4

See the CLI Reference for all 50+ commands and flags.

Docker

docker compose up -d

Next Steps

See SETUP.md for detailed instructions.