zmbfeng commited on
Commit
710c1d8
·
1 Parent(s): a8c9931

video reszied

Browse files
Files changed (1) hide show
  1. app.py +9 -1
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.video(st.session_state.avatar.output_video_path +st.session_state.avatar.output_video_name)
 
 
 
 
 
 
 
 
 
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")