File size: 604 Bytes
8606e7e
 
431d59e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8606e7e
631167b
8606e7e
 
431d59e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import gradio as gr

t = "the big blue " * 5
i = 0

def transcribe(audio: str, state: str):
    global i
    next_chunk = t[i:i+1]
    i += 1
    state += " " + next_chunk
    return audio, state

with gr.Blocks() as demo:
    gr.Markdown("# New Audio Streaming In 🎤")
    inp = gr.Audio(sources=["microphone"], type="filepath")
    out = gr.Audio(type="filepath", autoplay=True)
    transcription = gr.State(value="")
    clear = gr.Button("Clear")

    inp.stream(transcribe, [inp, transcription], [out, transcription], time_limit=10, stream_every=1)

if __name__ == "__main__":
    demo.launch()