show a video
Drop files here
or click to upload
import streamlit as st
st.title("Video Player Example")
# Using a sample video URL from the internet
video_url = "https://corsproxy.io/?https://storage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4"
# NOTE: Using corsproxy.io because we're in a WASM environment. If running locally,
# you can remove the corsproxy.io prefix.
st.write("Here's a sample video:")
st.video(video_url)
st.write("""
This is Big Buck Bunny, a famous open source animated short film often used as a demo video.
You can control playback using the video player controls.
""")
Hi! I can help you with any questions about Streamlit and Python. What would you like to know?