mirror of
https://github.com/jambonz/jambonz-feature-server.git
synced 2026-07-04 19:32:01 +00:00
support mod_google_tts_streaming (#1409)
* support mod_google_tts_streaming * wip * wip
This commit is contained in:
@@ -157,6 +157,13 @@ class TtsTask extends Task {
|
|||||||
...(reduceLatency && {RIMELABS_TTS_STREAMING_REDUCE_LATENCY: reduceLatency})
|
...(reduceLatency && {RIMELABS_TTS_STREAMING_REDUCE_LATENCY: reduceLatency})
|
||||||
};
|
};
|
||||||
break;
|
break;
|
||||||
|
case 'google':
|
||||||
|
obj = {
|
||||||
|
GOOGLE_TTS_LANGUAGE_CODE: language,
|
||||||
|
GOOGLE_TTS_VOICE_NAME: voice,
|
||||||
|
GOOGLE_APPLICATION_CREDENTIALS: JSON.stringify(credentials.credentials)
|
||||||
|
};
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
if (vendor.startsWith('custom:')) {
|
if (vendor.startsWith('custom:')) {
|
||||||
const use_tls = custom_tts_streaming_url.startsWith('wss://');
|
const use_tls = custom_tts_streaming_url.startsWith('wss://');
|
||||||
|
|||||||
@@ -311,6 +311,11 @@
|
|||||||
"ConnectFailure": "deepgram_tts_streaming::connect_failed",
|
"ConnectFailure": "deepgram_tts_streaming::connect_failed",
|
||||||
"Connect": "deepgram_tts_streaming::connect"
|
"Connect": "deepgram_tts_streaming::connect"
|
||||||
},
|
},
|
||||||
|
"GoogleTtsStreamingEvents": {
|
||||||
|
"Empty": "google_tts_streaming::empty",
|
||||||
|
"ConnectFailure": "google_tts_streaming::connect_failed",
|
||||||
|
"Connect": "google_tts_streaming::connect"
|
||||||
|
},
|
||||||
"CartesiaTtsStreamingEvents": {
|
"CartesiaTtsStreamingEvents": {
|
||||||
"Empty": "cartesia_tts_streaming::empty",
|
"Empty": "cartesia_tts_streaming::empty",
|
||||||
"ConnectFailure": "cartesia_tts_streaming::connect_failed",
|
"ConnectFailure": "cartesia_tts_streaming::connect_failed",
|
||||||
|
|||||||
@@ -421,6 +421,7 @@ class TtsStreamingBuffer extends Emitter {
|
|||||||
'cartesia',
|
'cartesia',
|
||||||
'elevenlabs',
|
'elevenlabs',
|
||||||
'rimelabs',
|
'rimelabs',
|
||||||
|
'google',
|
||||||
'custom'
|
'custom'
|
||||||
].forEach((vendor) => {
|
].forEach((vendor) => {
|
||||||
const eventClassName = `${vendor.charAt(0).toUpperCase() + vendor.slice(1)}TtsStreamingEvents`;
|
const eventClassName = `${vendor.charAt(0).toUpperCase() + vendor.slice(1)}TtsStreamingEvents`;
|
||||||
|
|||||||
Reference in New Issue
Block a user