rhea2809 commited on
Commit
2b88f5a
·
1 Parent(s): 1e8f649

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ image = Image.open("rai_raise_main_badge_pos_102.png")
4
+
5
+ title_container = st.container()
6
+ title_container.image(image, width = 300)
7
+ video_file = open('raii.mp4', 'rb')
8
+ video_bytes = video_file.read()
9
+
10
+ st.video(video_bytes)