aiDevzz commited on
Commit
e508bf5
1 Parent(s): 4138c2f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -29
app.py CHANGED
@@ -1,32 +1,7 @@
1
  import streamlit as st
2
  from transformers import pipeline
3
 
4
- st.title('Gen Video Demo')
5
- 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
-
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
-
 
1
  import streamlit as st
2
  from transformers import pipeline
3
 
4
+ title = st.title('GEN-VID')
5
+ about = st.write('GEN-VID is a OpenSource Text-to-Video application using Streanlit, veiw the Repo on Github, GEN-VID run on Your GPU/CPU if GEN-VID is slow it might be because your CPU/GPU is slow or broken :( , you can veiw the model-source down below')
6
+ Prompt = st.text_input('Prompt')
7
+ generate = st.button('create')