Spaces:
Running
Running
Antoni Bigata
commited on
Commit
·
c33a88b
1
Parent(s):
9ebfa23
requirements
Browse files- app.py +6 -2
- requirements.txt +2 -1
app.py
CHANGED
|
@@ -985,8 +985,12 @@ def submit_guess_click(guess, state):
|
|
| 985 |
|
| 986 |
|
| 987 |
# Create Gradio interface
|
| 988 |
-
with gr.Blocks(
|
| 989 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 990 |
gr.Markdown(
|
| 991 |
"Upload a video and audio to create a synchronized video with the same visuals but synchronized to the new audio."
|
| 992 |
)
|
|
|
|
| 985 |
|
| 986 |
|
| 987 |
# Create Gradio interface
|
| 988 |
+
with gr.Blocks(
|
| 989 |
+
title="KeySync: A Robust Approach for Leakage-free Lip Synchronization in High Resolution"
|
| 990 |
+
) as demo:
|
| 991 |
+
gr.Markdown(
|
| 992 |
+
"# KeySync: A Robust Approach for Leakage-free Lip Synchronization in High Resolution"
|
| 993 |
+
)
|
| 994 |
gr.Markdown(
|
| 995 |
"Upload a video and audio to create a synchronized video with the same visuals but synchronized to the new audio."
|
| 996 |
)
|
requirements.txt
CHANGED
|
@@ -12,4 +12,5 @@ torchvision
|
|
| 12 |
clint
|
| 13 |
xformers
|
| 14 |
pytorch_lightning
|
| 15 |
-
kornia
|
|
|
|
|
|
| 12 |
clint
|
| 13 |
xformers
|
| 14 |
pytorch_lightning
|
| 15 |
+
kornia
|
| 16 |
+
av
|