Ask questionsHow do I increase the text limit?
I can only synthesize about 11 seconds of speech, more isn't possible. How do I increase the text limit that can be synthesized?
Answer
questions
delgerdalai
@Cacozelia , No. You can calculate the maximum length of wav with max_decoder_steps.
with default params (max_decoder_steps = 1000): max_sound_duration = (hop_length * max_decoder_steps ) / sampling_rate = (256 * 1000) / 22050 ~= 11.6s.
with max_decoder_steps = 8000: max_sound_duration = (hop_length * max_decoder_steps ) / sampling_rate = (256 * 8000) / 22050 ~= 92.8s.
If it's not enough and you have enough GPU-RAM you can increase more.
In your case, Did you see any difference between max_decoder_steps = 1000 and max_decoder_steps = 8000?
Related questions
No questions were found.