Spaces:
Running
on
Zero
Running
on
Zero
df
Browse files- routers/gra_06_video/video.py +10 -10
routers/gra_06_video/video.py
CHANGED
@@ -60,16 +60,16 @@ examples = [
|
|
60 |
with gr.Blocks(css='style.css') as gradio_interface:
|
61 |
gr.Markdown(DESCRIPTION)
|
62 |
with gr.Group():
|
63 |
-
with gr.Box():
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
result = gr.Video(label='Result', show_label=False, elem_id='gallery')
|
74 |
with gr.Accordion('Advanced options', open=False):
|
75 |
seed = gr.Slider(
|
|
|
60 |
with gr.Blocks(css='style.css') as gradio_interface:
|
61 |
gr.Markdown(DESCRIPTION)
|
62 |
with gr.Group():
|
63 |
+
#with gr.Box():
|
64 |
+
with gr.Row(elem_id='prompt-container').style(equal_height=True):
|
65 |
+
prompt = gr.Text(
|
66 |
+
label='Prompt',
|
67 |
+
show_label=False,
|
68 |
+
max_lines=1,
|
69 |
+
placeholder='Enter your prompt',
|
70 |
+
elem_id='prompt-text-input').style(container=False)
|
71 |
+
run_button = gr.Button('Generate video').style(
|
72 |
+
full_width=False)
|
73 |
result = gr.Video(label='Result', show_label=False, elem_id='gallery')
|
74 |
with gr.Accordion('Advanced options', open=False):
|
75 |
seed = gr.Slider(
|