Mercurial > hg > auditok
comparison README.md @ 2:edee860b9f61
First release on Github
author | Amine Sehili <amine.sehili@gmail.com> |
---|---|
date | Thu, 17 Sep 2015 22:01:30 +0200 |
parents | |
children | 364eeb8e8bd2 |
comparison
equal
deleted
inserted
replaced
1:78ba0ead5f9f | 2:edee860b9f61 |
---|---|
1 AUDIo TOKenizer | |
2 =============== | |
3 | |
4 `auditok` is an Audio Activity Detection library that wan be used with online data (i.e. microphone) or with audio files. | |
5 | |
6 Requirements | |
7 ------------ | |
8 `auditok` uses [PyAudio](http://people.csail.mit.edu/hubert/pyaudio/) for audio acquisition and playback. | |
9 If installed, numpy will be privileged for math operations on vectors. | |
10 | |
11 Installation | |
12 ------------ | |
13 pip install auditok | |
14 | |
15 Demos | |
16 ----- | |
17 This code reads data from the microphone and plays back whatever it detects. | |
18 python demos/echo.py | |
19 | |
20 `echo.py` accepts two arguments: energy threshold (default=45) and duration in seconds (default=10): | |
21 | |
22 python demos/echo.py 50 15 | |
23 | |
24 If only one argument is given it will be used for energy. Other demos are in /demos. | |
25 | |
26 Documentation | |
27 ------------- | |
28 | |
29 Check out a quick start and the API documentation [here](http://amsehili.github.io/auditok/pdoc/) | |
30 | |
31 Contribution | |
32 ------------ | |
33 Contributions are very appreciated ! | |
34 | |
35 License | |
36 ------- | |
37 `auditok` is published under the GNU General Public License Version 3. | |
38 | |
39 Author | |
40 ------ | |
41 Amine Sehili (<amine.sehili@gmail.com>) | |
42 |