Skip to content

Commit 4d7170d

Browse files
authored
Merge pull request #1 from nimaiji/readme-edit
Readme edit
2 parents 0c7f57e + 515c968 commit 4d7170d

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

README.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,29 @@
1-
# python-soundrecognition
1+
# 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+
```python
11+
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+
```python
20+
s.initFFT()
21+
print(s.getFFT())
22+
s.drawFFT()
23+
```
24+
* Sound schematics
25+
```python
26+
s.draw() #Sound Digital Schematic
27+
s.drawFFT() #Sound FFT Schematic
28+
```
29+

0 commit comments

Comments
 (0)