aliabd HF Staff commited on
Commit
ae3a581
·
1 Parent(s): b40f6a1

Upload with huggingface_hub

Browse files
Files changed (5) hide show
  1. README.md +6 -7
  2. __pycache__/run.cpython-36.pyc +0 -0
  3. requirements.txt +3 -0
  4. run.py +22 -0
  5. screenshot.png +0 -0
README.md CHANGED
@@ -1,12 +1,11 @@
 
1
  ---
2
- title: Spectogram Main
3
- emoji: 👁
4
- colorFrom: gray
5
- colorTo: purple
6
  sdk: gradio
7
  sdk_version: 3.6
8
- app_file: app.py
9
  pinned: false
10
  ---
11
-
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
+
2
  ---
3
+ title: spectogram_main
4
+ emoji: 🔥
5
+ colorFrom: indigo
6
+ colorTo: indigo
7
  sdk: gradio
8
  sdk_version: 3.6
9
+ app_file: run.py
10
  pinned: false
11
  ---
 
 
__pycache__/run.cpython-36.pyc ADDED
Binary file (717 Bytes). View file
 
requirements.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ scipy
2
+ numpy
3
+ matplotlibhttps://gradio-main-build.s3.amazonaws.com/c3bec6153737855510542e8154391f328ac72606/gradio-3.6-py3-none-any.whl
run.py ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import matplotlib.pyplot as plt
2
+ import numpy as np
3
+ from scipy import signal
4
+
5
+ import gradio as gr
6
+
7
+
8
+ def spectrogram(audio):
9
+ sr, data = audio
10
+ if len(data.shape) == 2:
11
+ data = np.mean(data, axis=0)
12
+ frequencies, times, spectrogram_data = signal.spectrogram(
13
+ data, sr, window="hamming"
14
+ )
15
+ plt.pcolormesh(times, frequencies, np.log10(spectrogram_data))
16
+ return plt
17
+
18
+
19
+ demo = gr.Interface(spectrogram, "audio", "plot")
20
+
21
+ if __name__ == "__main__":
22
+ demo.launch()
screenshot.png ADDED