habib926653 commited on
Commit
4267bf5
·
verified ·
1 Parent(s): 2edbaa8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
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
- # Streamlit app
6
- st.title("Text to Video Generator")
 
 
 
 
 
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)