import gradio as gr | |
import funciones.motion | |
async def sepia(input_img): | |
print("Hola") | |
resultado = await funciones.motion.motion(input_img) | |
return resultado | |
demo = gr.Interface(sepia, gr.Image(type='filepath'), gr.Video()) | |
demo.launch() |
import gradio as gr | |
import funciones.motion | |
async def sepia(input_img): | |
print("Hola") | |
resultado = await funciones.motion.motion(input_img) | |
return resultado | |
demo = gr.Interface(sepia, gr.Image(type='filepath'), gr.Video()) | |
demo.launch() |