speech-analyzer / app.py
abrar-adnan's picture
remvoed examples
c66acef
raw
history blame
262 Bytes
import gradio as gr
import os
def video_identity(video):
return video
demo = gr.Interface(video_identity,
inputs= gr.Video(),
outputs = gr.Text()
)
if __name__ == "__main__":
demo.launch()