Update app.py
Browse files
app.py
CHANGED
|
@@ -41,13 +41,13 @@ with tab2:
|
|
| 41 |
|
| 42 |
# Container for video input
|
| 43 |
with st.container():
|
| 44 |
-
st.
|
| 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.
|
| 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:
|