testsson / app.py
cakemus's picture
video model
52e14d6
raw
history blame
856 Bytes
import gradio as gr
from transformers import pipeline
from spaces import GPU # Import the GPU decorator for ZeroGPU
# Use @GPU to allocate a GPU when running the video generation function
@GPU
def generate_video(prompt):
# Load the Kandinsky 1.1 video model
video_model = pipeline("video-generation", model="ai-forever/KandinskyVideo_1_1", device=0)
# Generate video based on the prompt
video = video_model(prompt)
return video # Ensure this returns the video file or frames
# Create the Gradio interface
interface = gr.Interface(
fn=generate_video,
inputs=gr.Textbox(label="Enter your prompt here"),
outputs="video",
title="AI Video Generator",
description="This app generates a short video based on your input prompt using Kandinsky 1.1.",
theme="dark"
)
if __name__ == "__main__":
interface.launch()