Update app.py
Browse files
app.py
CHANGED
@@ -6,14 +6,27 @@ st.text('stauts: Demo')
|
|
6 |
warning = st.text('🔥 warning this May not run well on Mobile devices')
|
7 |
|
8 |
upload = st.file_uploader('upload(Optinal)')
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
prompt = st.text_area('Prompt')
|
|
|
10 |
length = st.slider('Video Length')
|
|
|
11 |
steps = st.slider('steps')
|
|
|
12 |
FPSvalue = st.slider('frames per second')
|
|
|
13 |
Generate = st.button('Generate Video')
|
|
|
14 |
audioToggle = st.toggle('Audio?')
|
|
|
15 |
interpolation = st.toggle('interpolate frames?')
|
|
|
16 |
if Generate:
|
17 |
-
st.
|
18 |
st.button('cancel')
|
19 |
|
|
|
6 |
warning = st.text('🔥 warning this May not run well on Mobile devices')
|
7 |
|
8 |
upload = st.file_uploader('upload(Optinal)')
|
9 |
+
|
10 |
+
if upload:
|
11 |
+
st.text('file Succes!')
|
12 |
+
|
13 |
+
Neg = st.text_area('Negative Prompt')
|
14 |
+
|
15 |
prompt = st.text_area('Prompt')
|
16 |
+
|
17 |
length = st.slider('Video Length')
|
18 |
+
|
19 |
steps = st.slider('steps')
|
20 |
+
|
21 |
FPSvalue = st.slider('frames per second')
|
22 |
+
|
23 |
Generate = st.button('Generate Video')
|
24 |
+
|
25 |
audioToggle = st.toggle('Audio?')
|
26 |
+
|
27 |
interpolation = st.toggle('interpolate frames?')
|
28 |
+
|
29 |
if Generate:
|
30 |
+
st.write('generating video')
|
31 |
st.button('cancel')
|
32 |
|