mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
19 lines
440 B
Python
19 lines
440 B
Python
import gradio as gr
|
|
import matplotlib.pyplot as plt
|
|
import numpy as np
|
|
from scipy import signal
|
|
|
|
|
|
def spectogram(audio):
|
|
sr, data = audio
|
|
data = np.delete(data, 1, 1).reshape(-1)
|
|
frequencies, times, spectrogram = signal.spectrogram(data.reshape(-1), sr, window="hamming")
|
|
plt.pcolormesh(times, frequencies, np.log10(spectrogram))
|
|
return plt
|
|
|
|
|
|
io = gr.Interface(spectogram, "audio", "plot")
|
|
|
|
io.test_launch()
|
|
io.launch()
|