Spaces:
Sleeping
Sleeping
Add width and height to video element
Browse files
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,
|