mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-06 10:25:17 +08:00
10 lines
195 B
Python
10 lines
195 B
Python
|
import gradio as gr
|
||
|
import numpy as np
|
||
|
import random
|
||
|
|
||
|
def reverse_audio(audio):
|
||
|
sr, data = audio
|
||
|
return (sr, np.flipud(data))
|
||
|
|
||
|
gr.Interface(reverse_audio, "microphone", "audio").launch()
|