@@ -13,13 +13,12 @@ World Vocoder parameterizes speech into three components:
13
13
2 . smoothed spectrogram
14
14
3 . aperiodicity
15
15
16
- It can also resynthesize speech using these features.
16
+ It can also resynthesize speech using these features (see examples below) .
17
17
18
- For more information, please visit Morise's Github repository:
19
- https://github.com/mmorise/World
20
- <br />
21
- And the official website of World Vocoder:<br />
22
- http://ml.cs.yamanashi.ac.jp/world/english/
18
+ For more information, please visit [ Morise's World repository] ( https://github.com/mmorise/World )
19
+ and the [ official website of World Vocoder] ( http://ml.cs.yamanashi.ac.jp/world/english/ )
20
+
21
+ <br />
23
22
24
23
25
24
## I. APIs
@@ -49,19 +48,25 @@ f0, sp, ap, pyDioOpt = pw.wav2world(x, fs)
49
48
- Linux Ubuntu 14.04/16.04
50
49
- Python 2.7.6/3.5
51
50
- Cython 0.24 (or later versions; required)
52
- - Scipy
53
- - Numpy
54
- - argparse
55
- - Matplotlib (optional; for demo.py only)
51
+ - Scipy
52
+ - Numpy
53
+ - argparse
54
+ - Matplotlib (optional; for demo.py only)
55
+
56
+ You can simply install these by ` pip install -r requirements.txt `
56
57
57
58
### Installation procedures
58
59
``` bash
60
+ pip install -U pip
61
+ pip install -r requirements.txt
59
62
git clone https://github.com/JeremyCCHsu/Python-Wrapper-for-World-Vocoder.git
60
63
cd Python-Wrapper-for-World-Vocoder
61
64
bash download_vocoder.sh
65
+ python setup.py install
62
66
```
63
67
It will automatically ` git clone ` Morise's World Vocoder (C++ version).
64
- Then you can choose from the following installation options.
68
+ <br />
69
+ As for installation mode (the last line), you can choose from the following options.
65
70
66
71
67
72
### Installation Mode
0 commit comments