How to use synthesizer on a large texts? #917
-
|
I am using TTS on windows and the terminal has a limit on how much text I can put in. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
each sentence has 500 character limit. You can split things with Or you need to find the downloaded model and change the |
Beta Was this translation helpful? Give feedback.
-
|
I'm copying what I said on the TTS channel: You can try a small bash/python script. Split the text by '\n' (or what fits your data) and run the TTS command for each split. You can then join the audios together with https://trac.ffmpeg.org/wiki/Concatenate |
Beta Was this translation helpful? Give feedback.
I'm copying what I said on the TTS channel:
You can try a small bash/python script. Split the text by '\n' (or what fits your data) and run the TTS command for each split. You can then join the audios together with https://trac.ffmpeg.org/wiki/Concatenate