Shouldn't generateStream be a lot faster than generate?
voice.generate("This is a small test. Can this test be any faster? Can the speech be generated faster?");
-> 1700-1800ms
voice.generateStream("This is a small test. Can this test be any faster? Can the speech be generated faster?");
->1700ms to generateStream, 120ms to read all data from Stream = 1820ms
Is the streaming endpoint not used correctly or something? :)
Shouldn't generateStream be a lot faster than generate?
voice.generate("This is a small test. Can this test be any faster? Can the speech be generated faster?");
-> 1700-1800ms
voice.generateStream("This is a small test. Can this test be any faster? Can the speech be generated faster?");
->1700ms to generateStream, 120ms to read all data from Stream = 1820ms
Is the streaming endpoint not used correctly or something? :)