Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -66,9 +66,14 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
| 66 |
with gr.Accordion(open=True, label="Driving Video"):
|
| 67 |
video_input = gr.Video()
|
| 68 |
gr.Examples(
|
| 69 |
-
examples=[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
inputs=[video_input],
|
| 71 |
-
cache_examples=False
|
| 72 |
)
|
| 73 |
gr.Markdown(load_description("assets/gradio_description_animation.md"))
|
| 74 |
with gr.Row():
|
|
|
|
| 66 |
with gr.Accordion(open=True, label="Driving Video"):
|
| 67 |
video_input = gr.Video()
|
| 68 |
gr.Examples(
|
| 69 |
+
examples=[
|
| 70 |
+
[osp.join(example_portrait_dir, "d0.mp4")],
|
| 71 |
+
[osp.join(example_video_dir, "d5.mp4")],
|
| 72 |
+
[osp.join(example_video_dir, "d6.mp4")],
|
| 73 |
+
[osp.join(example_video_dir, "d7.mp4")],
|
| 74 |
+
],
|
| 75 |
inputs=[video_input],
|
| 76 |
+
cache_examples=False,
|
| 77 |
)
|
| 78 |
gr.Markdown(load_description("assets/gradio_description_animation.md"))
|
| 79 |
with gr.Row():
|