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.
1 parent 304e5ec commit 515c968Copy full SHA for 515c968
README.md
@@ -6,7 +6,24 @@ Clone or Download project and ...
6
import Sound
7
```
8
## Sound simulation
9
-init a Sound module with
+* Initialize a Sound module with
10
```python
11
-Sound.Sound('path.wav')
+s = Sound.Sound(path='path.wav')
12
13
+or
14
+```python
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