Gen_Video / app.py
aiDevzz's picture
Update app.py
758e034 verified
raw
history blame
No virus
645 Bytes
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')