Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
|
4 |
+
st.title('Anju AI Fitness Trainer')
|
5 |
+
|
6 |
+
|
7 |
+
#displaying a local video file
|
8 |
+
|
9 |
+
|
10 |
+
# Define the URL of the gif
|
11 |
+
gif_url = "output_recorded.gif"
|
12 |
+
|
13 |
+
# Display the gif using st.image
|
14 |
+
st.image(gif_url)
|
15 |
+
|
16 |
+
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
|