Spaces:
Running
Running
add title
Browse files
app.py
CHANGED
@@ -16,6 +16,13 @@ from avatar import Avatar
|
|
16 |
|
17 |
options = ['Aude', 'Kyla', 'Liv']
|
18 |
images = ['ref_videos/Aude.png', 'ref_videos/Kyla.png', 'ref_videos/Liv.png']
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
current_status_placeholder = st.empty()
|
20 |
init_progress_bar = st.progress(0)
|
21 |
if 'is_initialized' not in st.session_state:
|
|
|
16 |
|
17 |
options = ['Aude', 'Kyla', 'Liv']
|
18 |
images = ['ref_videos/Aude.png', 'ref_videos/Kyla.png', 'ref_videos/Liv.png']
|
19 |
+
big_text = """
|
20 |
+
<div style='text-align: center;'>
|
21 |
+
<h1 style='font-size: 30x;'>Text to Speech Synchronized Video</h1>
|
22 |
+
</div>
|
23 |
+
"""
|
24 |
+
# Display the styled text
|
25 |
+
st.markdown(big_text, unsafe_allow_html=True)
|
26 |
current_status_placeholder = st.empty()
|
27 |
init_progress_bar = st.progress(0)
|
28 |
if 'is_initialized' not in st.session_state:
|