Skip to content

Commit d28fb64

Browse files
committed
Readme
1 parent c19c06a commit d28fb64

File tree

1 file changed

+16
-11
lines changed

1 file changed

+16
-11
lines changed

README.md

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,12 @@ World Vocoder parameterizes speech into three components:
1313
2. smoothed spectrogram
1414
3. aperiodicity
1515

16-
It can also resynthesize speech using these features.
16+
It can also resynthesize speech using these features (see examples below).
1717

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/>
2322

2423

2524
## I. APIs
@@ -49,19 +48,25 @@ f0, sp, ap, pyDioOpt = pw.wav2world(x, fs)
4948
- Linux Ubuntu 14.04/16.04
5049
- Python 2.7.6/3.5
5150
- 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`
5657

5758
### Installation procedures
5859
```bash
60+
pip install -U pip
61+
pip install -r requirements.txt
5962
git clone https://github.com/JeremyCCHsu/Python-Wrapper-for-World-Vocoder.git
6063
cd Python-Wrapper-for-World-Vocoder
6164
bash download_vocoder.sh
65+
python setup.py install
6266
```
6367
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.
6570

6671

6772
### Installation Mode

0 commit comments

Comments
 (0)