Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
from transformers import pipeline
|
3 |
+
|
4 |
+
# Load the text-to-video model (Example using ModelScope)
|
5 |
+
video_model = pipeline("text-to-video", model="damo-vilab/text-to-video-ms-1.7b")
|
6 |
+
|
7 |
+
def generate_video(prompt):
|
8 |
+
video = video_model(prompt)
|
9 |
+
return video["video"]
|
10 |
+
|
11 |
+
# Gradio UI
|
12 |
+
iface = gr.Interface(
|
13 |
+
fn=generate_video,
|
14 |
+
inputs=gr.Textbox(label="Enter text prompt"),
|
15 |
+
outputs=gr.Video(label="Generated Video"),
|
16 |
+
title="AI Text-to-Video Generator",
|
17 |
+
description="Type a prompt, and AI will create a video for you!",
|
18 |
+
)
|
19 |
+
|
20 |
+
iface.launch()
|