#poor quality tts output
1 messages · Page 1 of 1 (latest)
If you're experiencing poor quality in text-to-speech output, there are a few things you can try to improve it:
-
Check Settings and Model: Ensure that you are using the correct settings and model for your needs. Different models may produce varying results.
-
Shorter Texts: If you're working with long texts, try breaking them into shorter segments. This can sometimes improve the quality of the output.
-
Projects Feature: Consider using the Projects feature for longer texts, as it can help enhance the workflow and potentially improve output quality.
If the issue persists, please provide more details about the specific problems you're encountering, such as the type of voice used, settings applied, and examples of the text causing issues. This information can help in troubleshooting the problem further.
let tts_request_body = TextToSpeechRequestBody {
text: &text,
model_id: "eleven_turbo_v2_5",
voice_settings: VoiceSettings {
stability: 0.8,
similarity_boost: 0.8,
style: 0.2,
use_speaker_boost: true,
},
};
let query_params = [("output_format", "pcm_16000")];