From e586f5b31defad72b28445eff1b07e3e2b7d000b Mon Sep 17 00:00:00 2001 From: He Tao Date: Tue, 22 Apr 2025 12:01:45 +0800 Subject: [PATCH] feat: use enegertic tts voice type --- src/podcast/graph/tts_node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/podcast/graph/tts_node.py b/src/podcast/graph/tts_node.py index d744146..11aeab0 100644 --- a/src/podcast/graph/tts_node.py +++ b/src/podcast/graph/tts_node.py @@ -16,7 +16,7 @@ def tts_node(state: PodcastState): tts_client = _create_tts_client() for line in state["script"].lines: tts_client.voice_type = ( - "BV002_streaming" if line.speaker == "male" else "BV001_streaming" + "BV033_streaming" if line.speaker == "male" else "BV034_streaming" ) result = tts_client.text_to_speech(line.text, speed_ratio=1.05) if result["success"]: