Spaces:
Running
Running
import gradio as gr | |
from videopose_PSTMO import gr_video2mc | |
def Video2MC(video): | |
output_path = gr_video2mc(video) | |
return output_path, output_path | |
iface = gr.Interface(fn=Video2MC, | |
inputs=gr.Video(), | |
outputs=["file", "text"]) | |
iface.launch() |