Spaces:
Sleeping
Sleeping
File size: 589 Bytes
276f265 3c38731 436a361 3c38731 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
from transformers import pipeline
import gradio as gr
p = pipeline("automatic-speech-recognition")
def transcribe(audio, state=""):
""" Speech to text function using pipeline"""
text = p(audio)["text"]
state += text + " "
return state, state
gr.Interface(fn=transcribe,
inputs=[gr.inputs.Audio(source="upload", type="filepath", label="Record/ Drop audio"), "state"],
outputs=["textbox", "state"],
title="Automatic Speech Recognition test",
description="Enable the recognition spoken language into text by computers.",
theme="huggingface",
live=True).launch() |