mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-12 10:34:32 +08:00
15 lines
244 B
Python
15 lines
244 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, "audio", "audio")
|
|
|
|
iface.test_launch()
|
|
if __name__ == "__main__":
|
|
iface.launch()
|