pyttsx3
                                
                                 pyttsx3 copied to clipboard
                                
                                    pyttsx3 copied to clipboard
                            
                            
                            
                        SSML ignored
the_text = "<speak xmlns="http://www.w3.org/2001/10/synthesis" version="1.0">
	<p>
		<s>
			<voice name="David" gender="male" age="25">
			start
			breaking <break time="2s"></break>
			<say-as interpret-as="characters">end</say-as>
			</voice>
		</s>
	</p>
</speak>"
engine = pyttsx3.init("sapi5")
engine.say(the_text)
engine.runAndWait()
Any plans to support SSML?