Alexander Ripperton commited on
Commit
874bd9f
1 Parent(s): ad1f390

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -27,7 +27,7 @@ with gr.Blocks() as demo:
27
  gr.Markdown("Text to Video using Diffusion-based text-to-video generation model built by ModelScope (NVIDIA GPU driver must be already installed on your system.)")
28
  with gr.Tab("Text to video"):
29
  prompt = gr.Textbox(label= 'Text Prompt')
30
- video_duration = gr.Textbox(label= "Video Duration in Seconds")
31
  video_output = gr.Video()
32
  create = gr.Button('Make Video')
33
  create.click(make_video,[prompt,video_duration], video_output)
 
27
  gr.Markdown("Text to Video using Diffusion-based text-to-video generation model built by ModelScope (NVIDIA GPU driver must be already installed on your system.)")
28
  with gr.Tab("Text to video"):
29
  prompt = gr.Textbox(label= 'Text Prompt')
30
+ video_duration = gr.Textbox(label= "Video Duration in Seconds (videos longer than 5 seconds can take a long time to create.)")
31
  video_output = gr.Video()
32
  create = gr.Button('Make Video')
33
  create.click(make_video,[prompt,video_duration], video_output)