File size: 600 Bytes
276f265
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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()