Spaces:
Runtime error
Runtime error
File size: 388 Bytes
dd0ef30 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import streamlit as st
VIDEO_URL = "https://static.streamlit.io/examples/star.mp4"
st.video(VIDEO_URL)
st.write(
"""
#### Video credit:
Creator: User _fxxu_ from _Pixabay_.
License: Free for commercial use. No attribution required.
https://pixabay.com/en/service/license/
URL:
https://pixabay.com/en/videos/star-long-exposure-starry-sky-sky-6962/
"""
)
|