Skip to content

Commit

Permalink
Merge 51043a1 into 566a5fd
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba committed Jun 24, 2024
2 parents 566a5fd + 51043a1 commit 6df2f32
Show file tree
Hide file tree
Showing 4 changed files with 14 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 @@ -44,6 +44,11 @@
"value": true,
"name": "全体の音量の調整"
},
"adjust_pause_length": {
"type": "bool",
"value": true,
"name": "句読点などの無音時間の調整"
},
"interrogative_upspeak": {
"type": "bool",
"value": true,
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions voicevox_engine/engine_manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class SupportedFeaturesJson:
adjust_pitch_scale: FeatureSupportJson
adjust_intonation_scale: FeatureSupportJson
adjust_volume_scale: FeatureSupportJson
adjust_pause_length: FeatureSupportJson
interrogative_upspeak: FeatureSupportJson
synthesis_morphing: FeatureSupportJson
sing: FeatureSupportJson
Expand Down Expand Up @@ -103,6 +104,9 @@ class SupportedFeatures(BaseModel):
adjust_pitch_scale: bool = Field(title="全体の音高の調整")
adjust_intonation_scale: bool = Field(title="全体の抑揚の調整")
adjust_volume_scale: bool = Field(title="全体の音量の調整")
adjust_pause_length: bool | SkipJsonSchema[None] = Field(
default=None, title="句読点などの無音時間の調整"
)
interrogative_upspeak: bool = Field(title="疑問文の自動調整")
synthesis_morphing: bool = Field(
title="2種類のスタイルでモーフィングした音声を合成"
Expand Down

0 comments on commit 6df2f32

Please sign in to comment.