File size: 492 Bytes
7938c54 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import streamlit as st
# Set page title and layout
st.set_page_config(page_title="Ventures Wipeout | Trump surfing", layout="wide")
# Title of the app
st.title("Trump: Sea-level Rise Just Means A Little More Beachfront Property")
video_filename = 'extended_djt_surfing_with_audio.mp4'
try:
with open(video_filename, 'rb') as f:
video_bytes = f.read()
st.video(video_bytes)
except FileNotFoundError:
st.warning(f"Archivo de video {video_filename} no encontrado.")
|