rhea2809's picture
Update app.py
7d84c0c
raw
history blame
266 Bytes
import streamlit as st
from PIL import Image
image = Image.open("rai_raise_main_badge_pos_102.png")
title_container = st.container()
title_container.image(image, width = 300)
video_file = open('raii.mp4', 'rb')
video_bytes = video_file.read()
st.video(video_bytes)