From 417d58080ecda1a587d22278fa0462934118fbe7 Mon Sep 17 00:00:00 2001 From: Hoan HL Date: Wed, 14 Jan 2026 17:34:07 +0700 Subject: [PATCH] wip --- lib/synth-audio.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/synth-audio.js b/lib/synth-audio.js index e1b8b92..4ba01b8 100644 --- a/lib/synth-audio.js +++ b/lib/synth-audio.js @@ -421,8 +421,8 @@ const synthGoogle = async(logger, { const isVoiceCloning = typeof voice === 'object' && voice.voice_cloning_key; // HD voices have pattern like en-US-Chirp3-HD-Charon const isHDVoice = typeof voice === 'string' && voice.includes('-HD-'); - // Live API is used for Gemini TTS and HD voices - const useLiveApi = isGemini || isHDVoice; + // Live API is used for HD voices + const useLiveApi = isHDVoice; // Streaming support for Google TTS (Gemini, HD voices, and standard voices) // Voice cloning does not support streaming