Skip to content

Commit

Permalink
助詞を調整
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba committed Dec 1, 2023
1 parent 0235424 commit a639acd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ asyncio.run(main())

### 2. 音声モデルの読み込み

VVM ファイルから`VoiceModel`インスタンスを作成し、`Synthesizer`に読み込ませます。その VVM ファイルにどの声が含まれているかは`VoiceModel``.metas`で確認できます。
VVM ファイルから`VoiceModel`インスタンスを作成し、`Synthesizer`に読み込ませます。その VVM ファイルにどの声が含まれているかは`VoiceModel``.metas`で確認できます。

```python
model = await VoiceModel.from_path("model/0.vvm")
Expand All @@ -113,7 +113,7 @@ pprint(model.metas)

## イントネーションの調整

`Synthesizer`はイントネーションの生成と音声合成の処理を分けることができます
`Synthesizer`はイントネーションの生成と音声合成の処理を分けることもできます

### AudioQuery の生成

Expand Down Expand Up @@ -148,7 +148,7 @@ AudioQuery(accent_phrases=[AccentPhrase(moras=[Mora(text='サ',
少し声を高くしてみます。`AudioQuery``.pitch_scale`で声の高さを調整できます。

```python
audio_query.pitch_scale = 0.1
audio_query.pitch_scale += 0.1
```

### 音声合成
Expand Down

0 comments on commit a639acd

Please sign in to comment.