azamat commited on
Commit
c235c30
·
1 Parent(s): 209e859

Add width and height to video element

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -41,7 +41,7 @@ def search(query):
41
  input_text = gr.Textbox(placeholder = "Your query, question, topic, ...", label = "Query")
42
 
43
  title = gr.Markdown()
44
- video = gr.Video(label = "Most relevant clip")
45
 
46
  iface = gr.Interface(fn=search,
47
  inputs=input_text,
 
41
  input_text = gr.Textbox(placeholder = "Your query, question, topic, ...", label = "Query")
42
 
43
  title = gr.Markdown()
44
+ video = gr.Video(width=640, height=360, label = "Most relevant clip")
45
 
46
  iface = gr.Interface(fn=search,
47
  inputs=input_text,