Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -2,8 +2,13 @@ import streamlit as st
|
|
| 2 |
from gradio_client import Client
|
| 3 |
from utils import get_scenes, generate_video_assets, generate_video # Import the function from utils.py
|
| 4 |
|
| 5 |
-
#
|
| 6 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
|
| 8 |
# Text input box with a max of 1500 characters
|
| 9 |
text_script = st.text_area("Enter your script/story (max 1500 characters):", max_chars=1500)
|
|
|
|
| 2 |
from gradio_client import Client
|
| 3 |
from utils import get_scenes, generate_video_assets, generate_video # Import the function from utils.py
|
| 4 |
|
| 5 |
+
# title
|
| 6 |
+
st.markdown(
|
| 7 |
+
"<h1 style='text-align: center;'>Text to Video Generator</h1>",
|
| 8 |
+
unsafe_allow_html=True
|
| 9 |
+
)
|
| 10 |
+
|
| 11 |
+
st.markdown("<p style='text-align: center;'>Leave a Like if it works for you! ❤️</p>", unsafe_allow_html=True)
|
| 12 |
|
| 13 |
# Text input box with a max of 1500 characters
|
| 14 |
text_script = st.text_area("Enter your script/story (max 1500 characters):", max_chars=1500)
|