feizhengcong's picture
Upload app.py
4ab190b
raw
history blame contribute delete
No virus
245 Bytes
import gradio as gr
def generate_video(prompt):
return "spring.mp4"
interface = gr.Interface(generate_video, gr.inputs.Textbox(placeholder="people in the street to celebrate spring festival"), gr.outputs.Video())
interface.launch()