mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
17 lines
277 B
Python
17 lines
277 B
Python
# Demo: (Audio) -> (Audio)
|
|
|
|
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")
|
|
|
|
iface.test_launch()
|
|
if __name__ == "__main__":
|
|
iface.launch()
|