Skip to content

Commit

Permalink
追加:エンジンマニフェストに無音時間を調整する能力adjust_pause_lengthを追加 (#1432)
Browse files Browse the repository at this point in the history
エンジンマニフェストに無音時間を調整する能力adjust_pause_lengthを追加
  • Loading branch information
Hiroshiba authored Jun 25, 2024
1 parent b8a8e9e commit 6813b41
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 6813b41

Please sign in to comment.