gradio/demo/reverse_audio/run.py
Dawood Khan f374eec22d
Fix cache examples for audio, video and image (#1459)
* image examples fix

* fix image test

* fix cache examples for audio and video

* fix tests

* fix audio test

* fix restore flagged file

* fix tests

* reformat

* tests fixes

* fix test

* reformat

* format

* fix test

* reformat

* fix image test

* renamed video demo

* removed redundant test that may have been causing rate limiting

Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
2022-06-07 15:10:19 -07:00

23 lines
529 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/cantina.wav"),
os.path.join(os.path.dirname(__file__), "audio/recording1.wav")
], cache_examples=True)
if __name__ == "__main__":
demo.launch()