File size: 283 Bytes
6741254
 
 
 
 
 
 
3a86adc
 
6741254
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import gradio as gr
import numpy as np

def reverse_audio(audio):
    sr, data = audio
    return (sr, np.flipud(data))

demo = gr.Interface(fn=reverse_audio,
                    inputs="microphone",
                    outputs="audio")

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