Warlord-K commited on
Commit
c5c9eb9
·
1 Parent(s): 172f39d

Remove FPS

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,6 +15,6 @@ with gr.Blocks() as demo:
15
  steps = gr.Radio([25, 50], value = 50, label = "Steps")
16
  output = gr.outputs.Video()
17
  run = gr.Button(label = "Generate Video")
18
- run.click(gen.generate, inputs = [story, api_key, fps, style, tags, model, steps], outputs = output)
19
 
20
  demo.launch()
 
15
  steps = gr.Radio([25, 50], value = 50, label = "Steps")
16
  output = gr.outputs.Video()
17
  run = gr.Button(label = "Generate Video")
18
+ run.click(gen.generate, inputs = [story, api_key, style, tags, model, steps], outputs = output)
19
 
20
  demo.launch()