Update app.py
Browse files
app.py
CHANGED
@@ -19,10 +19,10 @@ if file_video is not None:
|
|
19 |
if output is not None:
|
20 |
with col1:
|
21 |
st.subheader("Input: ")
|
22 |
-
video = open(file_video, "wb")
|
23 |
-
video_bytes = video.read()
|
24 |
-
# st.video(video)
|
25 |
-
st.video(video_bytes)
|
26 |
with col2:
|
27 |
st.subheader("Output: ")
|
28 |
output_video = open(output, "rb")
|
|
|
19 |
if output is not None:
|
20 |
with col1:
|
21 |
st.subheader("Input: ")
|
22 |
+
# video = open(file_video, "wb")
|
23 |
+
# video_bytes = video.read()
|
24 |
+
# # st.video(video)
|
25 |
+
# st.video(video_bytes)
|
26 |
with col2:
|
27 |
st.subheader("Output: ")
|
28 |
output_video = open(output, "rb")
|