mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-27 01:40:20 +08:00
f346118133
* Show message when no named api routes * Lint * Change text slightly * Add show_api to launch method + fix text * Undo changes to demos * Change url example
23 lines
522 B
Python
23 lines
522 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=[
|
|
"https://samplelib.com/lib/preview/mp3/sample-3s.mp3",
|
|
os.path.join(os.path.dirname(__file__), "audio/recording1.wav")
|
|
], cache_examples=True)
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch()
|