File size: 622 Bytes
1ed1fc0 |
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 |
# Faceless Video Generator (Free)
This is a minimal talking avatar video generator app using open-source models.
## Setup
1. Install dependencies:
```bash
pip install -r requirements.txt
```
2. Run the app:
```bash
python app.py
```
3. Open the URL displayed in your terminal in your browser.
4. Upload your avatar image and enter text to generate talking avatar videos.
## Notes
- This uses the First Order Motion Model (https://github.com/AliaksandrSiarohin/first-order-model) for animation.
- Coqui TTS is used for text-to-speech.
- Model weights will be downloaded automatically on first run. |