Spaces:
Runtime error
Runtime error
File size: 485 Bytes
06f8a11 507bcc1 06f8a11 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
---
title: Text to Video Generator
sdk: docker
emoji: 🔥
colorFrom: gray
colorTo: red
pinned: true
---
# Text-to-Video Generator 🎥✨
This Space lets you generate videos from text prompts using two models:
- `modelscope-text-to-video-synthesis` by Alibaba DAMO
- `zeroscope_v2_576w` by cerspense
## 🛠 How to Use
Send a POST request to `/generate-video` with the following JSON:
```json
{
"model": "modelscope",
"params": {
"prompt": "A robot dancing in space"
}
} |