Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -75,3 +75,6 @@ else:
|
|
75 |
if st.button("Process Video"):
|
76 |
output_video = process_video(video_path)
|
77 |
st.video(output_video)
|
|
|
|
|
|
|
|
75 |
if st.button("Process Video"):
|
76 |
output_video = process_video(video_path)
|
77 |
st.video(output_video)
|
78 |
+
st.write("Download the processed video:")
|
79 |
+
with open(output_video, "rb") as video_file:
|
80 |
+
st.download_button("Download", video_file, "workouts.mp4")
|