-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi @ahmetax With v2 of AllTalk, you can send just a line of text OR all the settings. If you send just the text and DONT specify anything else, AllTalk will use all the settings that are set in the Global AllTalk settings page e.g. This is somewhat discussed here in the API Dev section: And here in the Endpoints section: If you specifically want a Python script example of sending things to AllTalk, you can look at Line 286 to 335 is an example of sending either streaming generation OR standard generation (note, many options are NOT available for use with streaming generation). Hope that gives you a bit of insight, though Im not sure what level of detail you may need. Thanks |
Beta Was this translation helpful? Give feedback.
-
SO glad I ran across this build of coqui-TTS. I'm building an AI project at home and I'm starting to push the coqui-tts build to the limits. Some python programs are crashing trying to load xtts_v2. How much of the coqui-tts is compatible with this here? I'm hoping I don't need to rewrite much. I assume the only thing I'd need to re-write is where the audio is created from the text? |
Beta Was this translation helpful? Give feedback.
Hi @ahmetax
With v2 of AllTalk, you can send just a line of text OR all the settings. If you send just the text and DONT specify anything else, AllTalk will use all the settings that are set in the Global AllTalk settings page e.g.
This is somewhat discussed here in the API Dev section:
And here in the Endpoints section:
If you specifically want a Python script example of sending things to AllTalk, you can look at
\alltalk_tts\system\TGWUI Extension
and the script.py in there.Line 286 to 335 is an example of sending either streaming generation OR standard generation (note, many options are NOT available for use with streaming generation).
Hope that gives you a bit of insight, though …