![]() |
gtts - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: gtts (/thread-30381.html) |
gtts - Nickd12 - Oct-18-2020 gtts is only speaking last few words of text, is this a know issue? if so is there a fix? for example lets say i want it to speak "this is a test" gtts will only speak "a test" RE: gtts - ebolisa - Oct-24-2020 (Oct-18-2020, 11:06 PM)Nickd12 Wrote: gtts is only speaking last few words of text, is this a know issue? if so is there a fix?This works for me... from gtts import gTTS tts = gTTS('hello my friend, how are you?', lang='en') tts.save('hello.mp3') |