eaglelandsonce commited on
Commit
ede5400
1 Parent(s): b8ff57c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -41,13 +41,13 @@ with tab2:
41
 
42
  # Container for video input
43
  with st.container():
44
- st.header("Video Input")
45
  video_file = st.file_uploader("Upload a video file", type=["mp4", "avi"])
46
  youtube_url = st.text_input("Or paste a YouTube URL here:")
47
 
48
  # Container for video processing output
49
  with st.container():
50
- st.header("Video Processing")
51
 
52
  if st.button("Process Video"):
53
  if video_file is not None:
 
41
 
42
  # Container for video input
43
  with st.container():
44
+ st.write("Video Input")
45
  video_file = st.file_uploader("Upload a video file", type=["mp4", "avi"])
46
  youtube_url = st.text_input("Or paste a YouTube URL here:")
47
 
48
  # Container for video processing output
49
  with st.container():
50
+ st.write("Video Processing")
51
 
52
  if st.button("Process Video"):
53
  if video_file is not None: