Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -56,8 +56,13 @@ destination = []
|
|
56 |
thresholds = []
|
57 |
num_faces = 5
|
58 |
|
59 |
-
|
60 |
-
|
|
|
|
|
|
|
|
|
|
|
61 |
gr.Markdown("# Refacer")
|
62 |
with gr.Row():
|
63 |
video = gr.Video(label="Original video", format="mp4")
|
|
|
56 |
thresholds = []
|
57 |
num_faces = 5
|
58 |
|
59 |
+
from gradio.themes.utils.theme_dropdown import create_theme_dropdown
|
60 |
+
|
61 |
+
dropdown, js = create_theme_dropdown()
|
62 |
+
|
63 |
+
with gr.Blocks(theme='victorisgeek/gray') as demo:
|
64 |
+
with gr.Row(equal_height=True):
|
65 |
+
with gr.Column(scale=10):
|
66 |
gr.Markdown("# Refacer")
|
67 |
with gr.Row():
|
68 |
video = gr.Video(label="Original video", format="mp4")
|