Spaces:
Runtime error
Runtime error
Create app.py
Browse files
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)
|