Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -64,20 +64,20 @@ with gr.Blocks(css=css) as demo:
|
|
| 64 |
with gr.Row():
|
| 65 |
|
| 66 |
source_video_input = gr.Video(label="Portrait Video Source", scale=7)
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
|
| 82 |
gr.Markdown("ββββββββββ")
|
| 83 |
video_input = gr.Video(label="Driving Portrait Video")
|
|
|
|
| 64 |
with gr.Row():
|
| 65 |
|
| 66 |
source_video_input = gr.Video(label="Portrait Video Source", scale=7)
|
| 67 |
+
|
| 68 |
+
gr.Examples(
|
| 69 |
+
examples=[
|
| 70 |
+
[osp.join(example_video_dir, "d0.mp4")],
|
| 71 |
+
[osp.join(example_video_dir, "d18.mp4")],
|
| 72 |
+
[osp.join(example_video_dir, "d19.mp4")],
|
| 73 |
+
[osp.join(example_video_dir, "d14.mp4")],
|
| 74 |
+
[osp.join(example_video_dir, "d6.mp4")],
|
| 75 |
+
],
|
| 76 |
+
inputs=[source_video_input],
|
| 77 |
+
cache_examples=False,
|
| 78 |
+
|
| 79 |
+
)
|
| 80 |
+
|
| 81 |
|
| 82 |
gr.Markdown("ββββββββββ")
|
| 83 |
video_input = gr.Video(label="Driving Portrait Video")
|