File size: 645 Bytes
12115ea
 
 
 
 
12ae427
 
 
758e034
 
 
 
 
 
12115ea
758e034
12115ea
758e034
12115ea
758e034
b1d3ede
758e034
12115ea
758e034
ba075d9
758e034
ba075d9
758e034
b1d3ede
758e034
2677eab
d663bec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import streamlit as st
from transformers import pipeline

st.title('Gen Video Demo')
st.text('stauts: Demo')
warning = st.text('🔥 warning this May not run well on Mobile devices')

upload = st.file_uploader('upload(Optinal)')

if upload:
    st.text('file Succes!')

Neg = st.text_area('Negative Prompt')

prompt = st.text_area('Prompt')

length = st.slider('Video Length')

steps = st.slider('steps')

FPSvalue = st.slider('frames per second')

Generate = st.button('Generate Video')

audioToggle = st.toggle('Audio?')

interpolation = st.toggle('interpolate frames?')

if Generate:
    st.write('generating video')
    st.button('cancel')