Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

metas.jsonから不要な情報を抜きつつスネークケースに #579

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ curl -s \

生成される音声はサンプリングレートが 24000Hz と少し特殊なため、音声プレーヤーによっては再生できない場合があります。

`speaker` に指定する値は `/speakers` エンドポイントで得られる `styleId` です。互換性のために `speaker` という名前になっています。
`speaker` に指定する値は `/speakers` エンドポイントで得られる `style_id` です。互換性のために `speaker` という名前になっています。

### 読み方を AquesTalk 記法で取得・修正するサンプルコード

Expand Down Expand Up @@ -312,7 +312,7 @@ Issue 側で取り組み始めたことを伝えるか、最初に Draft プル

```bash
# 開発に必要なライブラリのインストール
python -m pip install -r requirements-test.txt
python -m pip install -r requirements-dev.txt -r requirements-test.txt

# とりあえず実行したいだけなら代わりにこちら
python -m pip install -r requirements.txt
Expand Down
6 changes: 3 additions & 3 deletions docs/VOICEVOX音声合成エンジンとの連携.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

- バージョンが上がっても、`/audio_query`で返ってくる値をそのまま`/synthesis`に POST すれば音声合成できるようにする予定です
- `AudioQuery`のパラメータは増えますが、なるべくデフォルト値で以前と変わらない音声が生成されるようにします
- バージョン0.7から音声スタイルが実装されました。スタイルの情報は`/speakers`から取得できます
- スタイルの情報にある`styleId`を`speaker`に指定することで、今まで通り音声合成ができます
- styleIdの指定先がspeakerなのは互換性のためです
- バージョン 0.7 から音声スタイルが実装されました。スタイルの情報は`/speakers`から取得できます
- スタイルの情報にある`style_id`を`speaker`に指定することで、今まで通り音声合成ができます
- style_id の指定先が speaker なのは互換性のためです
2 changes: 1 addition & 1 deletion run.py
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ def is_morphable(
):
"""
指定された2人の話者でモーフィング機能を利用可能か返します。
モーフィングの許可/禁止は`/speakers`の`speaker.supportedFeatures.synthesisMorphing`に記載されています。
モーフィングの許可/禁止は`/speakers`の`speaker.supported_features.synthesisMorphing`に記載されています。
プロパティが存在しない場合は、モーフィングが許可されているとみなします。
"""
engine = get_engine(core_version)
Expand Down
11 changes: 2 additions & 9 deletions speaker_info/35b2c544-660e-401e-b503-0e14c635303a/metas.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
{
"speakerName": "dummy3",
"speakerUuid": "dummy3uuid",
"supportedFeatures": {"permitedSynthesisMorphing": "NOTHING"},
"styles": [
{
"styleId": 8
}
]
}
"supported_features": { "permited_synthesis_morphing": "NOTHING" }
}
23 changes: 2 additions & 21 deletions speaker_info/388f246b-8c41-4ac1-8e2d-5d79f3ff56d9/metas.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,3 @@
{
"speakerName": "dummy2",
"speakerUuid": "dummy2uuid",
"supportedFeatures": {"permitedSynthesisMorphing": "SELF_ONLY"},
"styles": [
{
"styleId": 3
},
{
"styleName": "style2",
"styleId": 1
},
{
"styleName": "style3",
"styleId": 7
},
{
"styleName": "style4",
"styleId": 5
}
]
}
"supported_features": { "permited_synthesis_morphing": "SELF_ONLY" }
}
22 changes: 1 addition & 21 deletions speaker_info/7ffcb7ce-00ec-4bdc-82cd-45a8889e43ff/metas.json
Original file line number Diff line number Diff line change
@@ -1,21 +1 @@
{
"speakerName": "dummy1",
"speakerUuid": "dummy1uuid",
"styles": [
{
"styleId": 2
},
{
"styleName": "style2",
"styleId": 0
},
{
"styleName": "style3",
"styleId": 6
},
{
"styleName": "style4",
"styleId": 4
}
]
}
{}
11 changes: 2 additions & 9 deletions speaker_info/b1a81618-b27b-40d2-b0ea-27a9ad408c4b/metas.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
{
"speakerName": "dummy4",
"speakerUuid": "dummy4uuid",
"supportedFeatures": {"permitedSynthesisMorphing": "ALL"},
"styles": [
{
"styleId": 9
}
]
}
"supported_features": { "permited_synthesis_morphing": "ALL" }
}
8 changes: 4 additions & 4 deletions voicevox_engine/morphing.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,14 +93,14 @@ def is_synthesis_morphing_permitted(

# FIXME: 他にsupported_featuresができたら共通化する
base_speaker_morphing_info: SpeakerSupporPermitedSynthesisMorphing = (
base_speaker_engine_info.get("supportedFeatures", dict()).get(
"permitedSynthesisMorphing", SpeakerSupporPermitedSynthesisMorphing(None)
base_speaker_engine_info.get("supported_features", dict()).get(
"permited_synthesis_morphing", SpeakerSupporPermitedSynthesisMorphing(None)
)
)

target_speaker_morphing_info: SpeakerSupporPermitedSynthesisMorphing = (
target_speaker_engine_info.get("supportedFeatures", dict()).get(
"permitedSynthesisMorphing", SpeakerSupporPermitedSynthesisMorphing(None)
target_speaker_engine_info.get("supported_features", dict()).get(
"permited_synthesis_morphing", SpeakerSupporPermitedSynthesisMorphing(None)
)
)

Expand Down