mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-15 02:11:15 +08:00
b4d9825409
Ported gradio website into gradio repository, now launched as a docker service from gradio/website
12 lines
245 B
Python
12 lines
245 B
Python
import gradio as gr
|
|
import numpy as np
|
|
|
|
def reverse_audio(audio):
|
|
sr, data = audio
|
|
return (sr, np.flipud(data))
|
|
|
|
iface = gr.Interface(reverse_audio, "microphone", "audio", examples="audio")
|
|
|
|
if __name__ == "__main__":
|
|
iface.launch()
|