File size: 259 Bytes
153e3fb 993fe8a 153e3fb 993fe8a 153e3fb 993fe8a 153e3fb 993fe8a 153e3fb |
1 2 3 4 5 6 7 8 9 10 11 12 |
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() |