mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-12 10:34:32 +08:00
4c1c735399
* fixing demos * fixes
20 lines
379 B
Python
20 lines
379 B
Python
import os
|
|
|
|
import numpy as np
|
|
|
|
import gradio as gr
|
|
|
|
|
|
def reverse_audio(audio):
|
|
sr, data = audio
|
|
return (sr, np.flipud(data))
|
|
|
|
|
|
demo = gr.Interface(fn=reverse_audio,
|
|
inputs="microphone",
|
|
outputs="audio",
|
|
examples=os.path.join(os.path.dirname(__file__), "audio"))
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch()
|