We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0c7f57e + 515c968 commit 4d7170dCopy full SHA for 4d7170d
README.md
@@ -1 +1,29 @@
1
-# python-soundrecognition
+# Sound Recognition with Python
2
+
3
+## First Of All
4
+Clone or Download project and ...
5
+```python
6
+import Sound
7
+```
8
+## Sound simulation
9
+* Initialize a Sound module with
10
11
+s = Sound.Sound(path='path.wav')
12
13
+or
14
15
+s = Sound.Sound(path='path.wav',name='mySound')
16
17
18
+* Initialize FFT(Fast Fourier transform) on our Sound module
19
20
+s.initFFT()
21
+print(s.getFFT())
22
+s.drawFFT()
23
24
+* Sound schematics
25
26
+s.draw() #Sound Digital Schematic
27
+s.drawFFT() #Sound FFT Schematic
28
29
0 commit comments