How to install and run the Automated Video Generator on Windows, macOS, and Linux.
Download the latest .exe installer from the Releases page. Double-click and follow the setup wizard. No Node.js or Python required.
Clone the repo and double-click Start-Automated-Video-Generator.bat. The launcher handles dependency installation and starts the web portal automatically.
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.
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 compose up -d
See SETUP.md for detailed instructions.