Update app.py
Browse files
app.py
CHANGED
@@ -48,6 +48,15 @@ css="""
|
|
48 |
margin: 0 auto;
|
49 |
max-width: 940px;
|
50 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
"""
|
52 |
with gr.Blocks(css=css) as demo:
|
53 |
with gr.Column(elem_id="col-container"):
|
@@ -55,7 +64,7 @@ with gr.Blocks(css=css) as demo:
|
|
55 |
<h1 style="text-align: center;">DreamTalk</h1>
|
56 |
<h2 style="text-align: center;">When Expressive Talking Head Generation Meets Diffusion Probabilistic Models</h2>
|
57 |
<p style="text-align: center;max-width:720px;">
|
58 |
-
DreamTalk is a diffusion-based audio-driven expressive talking head generation framework that can produce high-quality talking head videos across diverse speaking styles.
|
59 |
DreamTalk exhibits robust performance with a diverse array of inputs, including songs, speech in multiple languages, noisy audio, and out-of-domain portraits.
|
60 |
</p>
|
61 |
""")
|
@@ -135,7 +144,7 @@ with gr.Blocks(css=css) as demo:
|
|
135 |
output_video = gr.Video(format="mp4")
|
136 |
gr.HTML("""
|
137 |
<img src="https://github.com/ali-vilab/dreamtalk/raw/main/media/teaser.gif" style="margin: 0 auto;border-radius: 10px;" />
|
138 |
-
<p align="center">
|
139 |
<a href='https://dreamtalk-project.github.io/'><img src='https://img.shields.io/badge/Project-Page-Green'></a> <a href='https://arxiv.org/abs/2312.09767'><img src='https://img.shields.io/badge/Paper-Arxiv-red'></a> <a href='https://youtu.be/VF4vlE6ZqWQ'><img src='https://badges.aleen42.com/src/youtube.svg'></a>
|
140 |
</p>
|
141 |
""")
|
|
|
48 |
margin: 0 auto;
|
49 |
max-width: 940px;
|
50 |
}
|
51 |
+
#project-links{
|
52 |
+
margin-top: 12px!important;
|
53 |
+
column-gap: 8px;
|
54 |
+
display: flex;
|
55 |
+
justify-content: center;
|
56 |
+
flex-wrap: nowrap;
|
57 |
+
flex-direction: row;
|
58 |
+
align-items: center;
|
59 |
+
}
|
60 |
"""
|
61 |
with gr.Blocks(css=css) as demo:
|
62 |
with gr.Column(elem_id="col-container"):
|
|
|
64 |
<h1 style="text-align: center;">DreamTalk</h1>
|
65 |
<h2 style="text-align: center;">When Expressive Talking Head Generation Meets Diffusion Probabilistic Models</h2>
|
66 |
<p style="text-align: center;max-width:720px;">
|
67 |
+
DreamTalk is a diffusion-based audio-driven expressive talking head generation framework that can produce high-quality talking head videos across diverse speaking styles.
|
68 |
DreamTalk exhibits robust performance with a diverse array of inputs, including songs, speech in multiple languages, noisy audio, and out-of-domain portraits.
|
69 |
</p>
|
70 |
""")
|
|
|
144 |
output_video = gr.Video(format="mp4")
|
145 |
gr.HTML("""
|
146 |
<img src="https://github.com/ali-vilab/dreamtalk/raw/main/media/teaser.gif" style="margin: 0 auto;border-radius: 10px;" />
|
147 |
+
<p id="project-links" align="center">
|
148 |
<a href='https://dreamtalk-project.github.io/'><img src='https://img.shields.io/badge/Project-Page-Green'></a> <a href='https://arxiv.org/abs/2312.09767'><img src='https://img.shields.io/badge/Paper-Arxiv-red'></a> <a href='https://youtu.be/VF4vlE6ZqWQ'><img src='https://badges.aleen42.com/src/youtube.svg'></a>
|
149 |
</p>
|
150 |
""")
|