voice-changer/README_dev_ja.md

123 lines
3.2 KiB
Markdown
Raw Normal View History

2023-04-19 07:35:37 +03:00
## 開発者向け
[English](/README_dev_en.md)
## 前提
2023-07-26 22:40:14 +03:00
- Linux(ubuntu, debian) or WSL2, (not tested for other linux distributions and Mac)
2023-04-19 07:35:37 +03:00
- Anaconda
## 準備
1. Anaconda の仮想環境を作成する
```
$ conda create -n vcclient-dev python=3.10
$ conda activate vcclient-dev
```
2. リポジトリをクローンする
```
$ git clone https://github.com/w-okada/voice-changer.git
```
## サーバ開発者向け
2023-06-27 01:06:06 +03:00
1. モジュールをインストールする
2023-04-19 07:35:37 +03:00
```
2023-06-27 02:13:29 +03:00
$ cd voice-changer/server
2023-04-19 07:35:37 +03:00
$ pip install -r requirements.txt
```
2023-06-27 01:06:06 +03:00
2. サーバを起動する
2023-04-19 07:35:37 +03:00
2023-04-19 07:38:56 +03:00
次のコマンドで起動します。各種重みについてのパスは環境に合わせて変えてください。
2023-04-19 07:35:37 +03:00
```
$ python3 MMVCServerSIO.py -p 18888 --https true \
2023-07-09 21:46:19 +03:00
--content_vec_500 pretrain/checkpoint_best_legacy_500.pt \
--content_vec_500_onnx pretrain/content_vec_500.onnx \
--content_vec_500_onnx_on true \
--hubert_base pretrain/hubert_base.pt \
--hubert_base_jp pretrain/rinna_hubert_base_jp.pt \
--hubert_soft pretrain/hubert/hubert-soft-0d54a1f4.pt \
--nsf_hifigan pretrain/nsf_hifigan/model \
--crepe_onnx_full pretrain/crepe_onnx_full.onnx \
--crepe_onnx_tiny pretrain/crepe_onnx_tiny.onnx \
2023-07-17 03:21:35 +03:00
--rmvpe pretrain/rmvpe.pt \
2023-07-09 21:46:19 +03:00
--model_dir model_dir \
--samples samples.json
2023-04-19 07:35:37 +03:00
```
2023-07-29 17:10:01 +03:00
ブラウザ(Chrome のみサポート)でアクセスすると画面が表示されます。
2023-06-27 01:06:06 +03:00
2-1. トラブルシュート
(1) OSError: PortAudio library not found
次のようなメッセージが表示される場合、追加でライブラリを追加する必要があります。
2023-07-09 21:46:19 +03:00
2023-06-27 01:06:06 +03:00
```
OSError: PortAudio library not found
```
2023-07-09 21:46:19 +03:00
2023-06-27 01:06:06 +03:00
ubuntu(wsl2)の場合下記のコマンドでインストールできます。
2023-07-09 21:46:19 +03:00
2023-06-27 01:06:06 +03:00
```
$ sudo apt-get install libportaudio2
$ sudo apt-get install libasound-dev
```
2023-07-26 22:38:54 +03:00
(2) 起動しないんだけど!?
自動でクライアントは起動しません。ブラウザを立ち上げてコンソールに表示された URL にアクセスしてください。
(3) Could not load library libcudnn_cnn_infer.so.8
WSL を使っていると`Could not load library libcudnn_cnn_infer.so.8. Error: libcuda.so: cannot open shared object file: No such file or directory`と表示される場合があります。
パスが通っていないことが原因のことが多いです。下記のようにパスを通して実行してください。
.bashrc など起動スクリプトに追加しておくと便利だと思います。
```
export LD_LIBRARY_PATH=/usr/lib/wsl/lib:$LD_LIBRARY_PATH
```
- 参考
- https://qiita.com/cacaoMath/items/811146342946cdde5b83
- https://github.com/microsoft/WSL/issues/8587
2023-06-27 01:06:06 +03:00
3. 開発しましょう
2023-04-19 07:35:37 +03:00
2023-07-09 21:46:19 +03:00
### Appendix
1. Win + Anaconda のとき (not supported)
pytorch を conda で入れないと gpu を認識しないかもしれない。
2023-06-27 12:24:01 +03:00
```
conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia
```
また、追加で下記も必要のようだ。
2023-07-09 21:46:19 +03:00
2023-06-27 12:24:01 +03:00
```
2023-07-09 21:46:19 +03:00
pip install chardet
2023-06-27 12:24:01 +03:00
pip install numpy==1.24.0
```
2023-04-19 07:35:37 +03:00
## クライアント開発者向け
1. モジュールをインストールして、一度ビルドします
```
cd client
cd lib
npm install
npm run build:dev
cd ../demo
npm install
npm run build:dev
```
2. 開発しましょう