Merge pull request #2231 from qingshuiyuyu/bugfix

修复-火山双流式语音合成-additions参数配置
This commit is contained in:
Sakura-RanChen
2025-09-16 10:43:45 +08:00
committed by GitHub
@@ -616,12 +616,13 @@ class TTSProvider(TTSProviderBase):
"speech_rate": self.speech_rate,
"loudness_rate": self.loudness_rate
},
"additions": json.dumps({
"post_process": {
"pitch": self.pitch
}
})
},
"additions": {
"post_process": {
"pitch": self.pitch
}
}
}
)
)