File size: 1,282 Bytes
54ed165 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | # π Quick Start Guide - Local Video Generator
Get up and running in 3 simple steps!
## Step 1: Install PyTorch
Choose based on your hardware:
### Option A: GPU (NVIDIA) - Recommended
```bash
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
```
### Option B: CPU Only
```bash
pip install torch torchvision torchaudio
```
## Step 2: Run the Startup Script
### On macOS/Linux:
```bash
./start_local.sh
```
### On Windows:
```batch
start_local.bat
```
The script will:
- Create a virtual environment
- Install all dependencies
- Start the backend server
## Step 3: Open the Web Interface
1. Open `index_local.html` in your browser
2. Click **"π Initialize Model"** (first time only, takes 2-5 minutes)
3. Enter a prompt and click **"π¬ Generate Video"**
4. Wait 30-120 seconds (GPU) or 5-10 minutes (CPU)
5. Enjoy your AI-generated video! π
## β‘ Quick Tips
- **First run**: Model download (~5GB) happens automatically
- **GPU users**: 30-120 seconds per video
- **CPU users**: 5-10 minutes per video (be patient!)
- **Example prompts**: Click the example buttons in the UI
## π Need Help?
See `README_LOCAL.md` for detailed documentation and troubleshooting.
---
**That's it! Happy video generation! π¬β¨**
|