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

マニフェストにsing能力追加 #1035

Merged
merged 1 commit into from
Jan 31, 2024
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
5 changes: 5 additions & 0 deletions engine_manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@
"value": true,
"name": "2種類のスタイルでモーフィングした音声を合成"
},
"sing" : {
"type": "bool",
"value": true,
"name": "歌唱音声合成"
},
"manage_library": {
"type": "bool",
"value": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -859,6 +859,10 @@
"title": "音声ライブラリのインストール・アンインストール",
"type": "boolean"
},
"sing": {
"title": "歌唱音声合成",
"type": "boolean"
},
"synthesis_morphing": {
"title": "2種類のスタイルでモーフィングした音声を合成",
"type": "boolean"
Expand All @@ -872,7 +876,8 @@
"adjust_intonation_scale",
"adjust_volume_scale",
"interrogative_upspeak",
"synthesis_morphing"
"synthesis_morphing",
"sing"
],
"title": "SupportedFeatures",
"type": "object"
Expand Down
1 change: 1 addition & 0 deletions voicevox_engine/engine_manifest/EngineManifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ class SupportedFeatures(BaseModel):
adjust_volume_scale: bool = Field(title="全体の音量の調整")
interrogative_upspeak: bool = Field(title="疑問文の自動調整")
synthesis_morphing: bool = Field(title="2種類のスタイルでモーフィングした音声を合成")
sing: bool = Field(title="歌唱音声合成")
manage_library: Optional[bool] = Field(title="音声ライブラリのインストール・アンインストール")


Expand Down
Loading