From 7f967d4ad1528697a32ad118a7f724ac81ae9538 Mon Sep 17 00:00:00 2001 From: theovit Date: Thu, 7 Sep 2023 22:43:30 -0500 Subject: [PATCH] Changed the default voice_choice from tiktok to streamlabspolly Considering the widespread user concerns surrounding TikTok's voice option limitations with respect to text-to-speech (TTS) length, it seems prudent to consider making StreamlabsPolly the default voice choice. This decision would reflect the prevailing preference of the majority of users who have already chosen StreamlabsPolly as their preferred alternative. --- utils/.config.template.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/.config.template.toml b/utils/.config.template.toml index 211cc97..782573b 100644 --- a/utils/.config.template.toml +++ b/utils/.config.template.toml @@ -43,7 +43,7 @@ background_thumbnail_font_size = { optional = true, type = "int", default = 96, background_thumbnail_font_color = { optional = true, default = "255,255,255", example = "255,255,255", explanation = "Font color in RGB format for the thumbnail text" } [settings.tts] -voice_choice = { optional = false, default = "tiktok", options = ["elevenlabs", "streamlabspolly", "tiktok", "googletranslate", "awspolly", "pyttsx", ], example = "tiktok", explanation = "The voice platform used for TTS generation. " } +voice_choice = { optional = false, default = "streamlabspolly", options = ["elevenlabs", "streamlabspolly", "tiktok", "googletranslate", "awspolly", "pyttsx", ], example = "tiktok", explanation = "The voice platform used for TTS generation. " } random_voice = { optional = false, type = "bool", default = true, example = true, options = [true, false,], explanation = "Randomizes the voice used for each comment" } elevenlabs_voice_name = { optional = false, default = "Bella", example = "Bella", explanation = "The voice used for elevenlabs", options = ["Adam", "Antoni", "Arnold", "Bella", "Domi", "Elli", "Josh", "Rachel", "Sam", ] } elevenlabs_api_key = { optional = true, example = "21f13f91f54d741e2ae27d2ab1b99d59", explanation = "Elevenlabs API key" }