From 0c2c72869e38e5ba9379dac97f319b60295e1fc9 Mon Sep 17 00:00:00 2001 From: sabonerune <102559104+sabonerune@users.noreply.github.com> Date: Fri, 2 Dec 2022 00:21:59 +0900 Subject: [PATCH] =?UTF-8?q?ENH:=20=E3=83=9E=E3=83=8B=E3=83=95=E3=82=A7?= =?UTF-8?q?=E3=82=B9=E3=83=88=E3=81=AB=E3=83=A2=E3=83=BC=E3=83=95=E3=82=A3?= =?UTF-8?q?=E3=83=B3=E3=82=B0=E3=81=AE=E5=8F=AF=E5=90=A6=E3=82=92=E8=BF=BD?= =?UTF-8?q?=E5=8A=A0=20(#515)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- engine_manifest.json | 5 +++++ voicevox_engine/engine_manifest/EngineManifest.py | 1 + 2 files changed, 6 insertions(+) diff --git a/engine_manifest.json b/engine_manifest.json index efaebd4ad..fb7144c14 100644 --- a/engine_manifest.json +++ b/engine_manifest.json @@ -48,6 +48,11 @@ "type": "bool", "value": true, "name": "疑問文の自動調整" + }, + "synthesis_morphing" : { + "type": "bool", + "value": true, + "name": "2人の話者でモーフィングした音声を合成" } } } diff --git a/voicevox_engine/engine_manifest/EngineManifest.py b/voicevox_engine/engine_manifest/EngineManifest.py index d49a052e8..535c1f506 100644 --- a/voicevox_engine/engine_manifest/EngineManifest.py +++ b/voicevox_engine/engine_manifest/EngineManifest.py @@ -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):