When using a german reference voice (german_voice in this example), the following API request creates a perfect German sentence:
curl -X POST http://localhost:4123/v1/audio/speech \
-H "Content-Type: application/json" \
-d '{"input": "Letzten Monat haben wir einen neuen Meilenstein erreicht: zwei Milliarden Aufrufe auf unserem YouTube-Kanal.", "voice": "german_voice", "exaggeration": 0.5, "cfg_weight": 0.5, "temperature": 0.8}' --output output.wav
Uploading the same voice, using the same text and parameters in the frontend, many words sound like they were spoken by an English or other, non-native speaking person. Something seems to be off in the request to the backend.
When using a german reference voice (
german_voicein this example), the following API request creates a perfect German sentence:curl -X POST http://localhost:4123/v1/audio/speech \ -H "Content-Type: application/json" \ -d '{"input": "Letzten Monat haben wir einen neuen Meilenstein erreicht: zwei Milliarden Aufrufe auf unserem YouTube-Kanal.", "voice": "german_voice", "exaggeration": 0.5, "cfg_weight": 0.5, "temperature": 0.8}' --output output.wavUploading the same voice, using the same text and parameters in the frontend, many words sound like they were spoken by an English or other, non-native speaking person. Something seems to be off in the request to the backend.