I am trying to use pyttsx for text-to-speech. I would like it to tell the french 'é' :
# -*- coding: utf8 -*-
import pyttsx
engine = pyttsx.init()
voice = engine.getProperty('voices')[26] # the french voice
engine.setProperty('voice', voice.id)
engine.say('Je lui ai dit, fait gaffe a ton nez') # perfect
engine.say('Tu as bien mangé?') # not saying anything
engine.runAndWait()