File size: 570 Bytes
276f265
 
 
 
 
 
 
 
 
 
 
76e4fff
1
2
3
4
5
6
7
8
9
10
11
12
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="microphone", type="filepath", label="Record/ Drop audio"), "state"], outputs=["textbox", "state"], title="Automatic Speech Recognition", description="Enable the recognition spoken language into text by computers.", theme="huggingface", live=True).launch()