Hi there,
I want to say thank you for this awesome package the Streamlit dev team has provided to the world.
While i am trying to embed my local video file in my streamlit app, I couldn’t find any API reference on resizing the video, such as changing the height.
with RS_r1col2:
video_file = open('video.ogv', 'rb')
video_bytes = video_file.read()
st.video(video_bytes)
Any idea on how I can change this size?
Thanks for your help.
Cheers,
Will