File size: 557 Bytes
12115ea
 
 
 
 
12ae427
 
 
12115ea
 
 
b1d3ede
12115ea
ba075d9
 
b1d3ede
4387646
2677eab
d663bec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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)')
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.text('generating video')
    st.button('cancel')