Update app.py
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ if uploaded_file is not None:
|
|
25 |
bytes_data = uploaded_file.getvalue()
|
26 |
st.video(bytes_data)
|
27 |
with open("inputvideo", "wb") as binary_file:
|
28 |
-
binary_file.write(
|
29 |
vcap = cv2.VideoCapture('inputvideo') # 0=camera
|
30 |
width=0
|
31 |
height=0
|
|
|
25 |
bytes_data = uploaded_file.getvalue()
|
26 |
st.video(bytes_data)
|
27 |
with open("inputvideo", "wb") as binary_file:
|
28 |
+
binary_file.write(bytes_data)
|
29 |
vcap = cv2.VideoCapture('inputvideo') # 0=camera
|
30 |
width=0
|
31 |
height=0
|