Spaces:
Running
Running
video reszied
Browse files
app.py
CHANGED
@@ -78,4 +78,12 @@ if user_input:
|
|
78 |
st.write("You entered:", user_input)
|
79 |
st.session_state.avatar.export_video=True
|
80 |
st.session_state.avatar.text_to_lip_video(user_input)
|
81 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
st.write("You entered:", user_input)
|
79 |
st.session_state.avatar.export_video=True
|
80 |
st.session_state.avatar.text_to_lip_video(user_input)
|
81 |
+
col1, col2, col3 = st.columns([1, 4, 1])
|
82 |
+
|
83 |
+
# with col1:
|
84 |
+
# st.write("Column 1 content")
|
85 |
+
|
86 |
+
with col2:
|
87 |
+
st.video(st.session_state.avatar.output_video_path + st.session_state.avatar.output_video_name)
|
88 |
+
# with col3:
|
89 |
+
# st.write("Column 3 content")
|