Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,4 @@
|
|
1 |
-
#
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
import streamlit as st
|
7 |
from gradio_client import Client
|
8 |
from utils import get_scenes, generate_video_assets, generate_video # Import the function from utils.py
|
9 |
|
@@ -18,8 +13,8 @@ st.markdown("<p style='text-align: center;'>Leave a Like if it works for you!
|
|
18 |
# Example Section - Placed before the input box
|
19 |
st.markdown("### 🔥 See How It Works (Example)")
|
20 |
|
21 |
-
# Example video (Replace '
|
22 |
-
example_video_path = "
|
23 |
st.video(example_video_path)
|
24 |
|
25 |
# Example script in an expandable section
|
|
|
1 |
+
#import streamlit as st
|
|
|
|
|
|
|
|
|
|
|
2 |
from gradio_client import Client
|
3 |
from utils import get_scenes, generate_video_assets, generate_video # Import the function from utils.py
|
4 |
|
|
|
13 |
# Example Section - Placed before the input box
|
14 |
st.markdown("### 🔥 See How It Works (Example)")
|
15 |
|
16 |
+
# Example video (Replace 'crow_example.mp4' with your actual file path or URL)
|
17 |
+
example_video_path = "crow_example.mp4" # Change to your actual video file
|
18 |
st.video(example_video_path)
|
19 |
|
20 |
# Example script in an expandable section
|