edit video
To upload files, please first save the app
import streamlit as st
st.title('Video Editor')
video_file = st.file_uploader('Upload a video file', type=['mp4', 'mov', 'avi'])
if video_file is not None:
st.video(video_file)
Hi! I can help you with any questions about Streamlit and Python. What would you like to know?