Skip to content

Commit

Permalink
ENH: マニフェストにモーフィングの可否を追加 (#515)
Browse files Browse the repository at this point in the history
  • Loading branch information
sabonerune committed Dec 1, 2022
1 parent ed3748c commit 0c2c728
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions engine_manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@
"type": "bool",
"value": true,
"name": "疑問文の自動調整"
},
"synthesis_morphing" : {
"type": "bool",
"value": true,
"name": "2人の話者でモーフィングした音声を合成"
}
}
}
1 change: 1 addition & 0 deletions voicevox_engine/engine_manifest/EngineManifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ class SupportedFeatures(BaseModel):
adjust_intonation_scale: bool = Field(title="全体の抑揚の調整")
adjust_volume_scale: bool = Field(title="全体の音量の調整")
interrogative_upspeak: bool = Field(title="疑問文の自動調整")
synthesis_morphing: bool = Field(title="2人の話者でモーフィングした音声を合成")


class EngineManifest(BaseModel):
Expand Down

0 comments on commit 0c2c728

Please sign in to comment.