morbiwalaq commited on
Commit
474e88e
·
verified ·
1 Parent(s): 3bee0e3

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +20 -0
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()