Bonjour
je débute avec MRL
je cherche a faire coupé le micro quand il y a une lecture d’un texte et à le rallumer après.
voici mon petit script j’aimerai savoir ce que je dois y ajouter pour réaliser cette fonction.
from java.lang import String
chatBot=Runtime.createAndStart("chatBot", "ProgramAB")
ear=Runtime.createAndStart("ear", "WebkitSpeechRecognition")
mouth=Runtime.createAndStart("mouth", "AcapelaSpeech")
htmlFilter=Runtime.createAndStart("htmlFilter", "HtmlFilter")
webgui=Runtime.createAndStart("webgui", "WebGui")
ear.setLanguage("fr-FR")
mouth.setLanguage("FR") # on parle francais !
mouth.setVoice("julie") # on choisis une voix ( voir la liste des voix sur http://www.acapela-group.com/?lang=fr
chatBot.startSession("ProgramAB","Defaut","hsboot")
ear.addTextListener(chatBot) # On creer une liaison de webKitSpeechRecognition vers Program AB
chatBot.addTextListener(htmlFilter) # On creer une liaison de Program AB vers html filter
htmlFilter.addTextListener(mouth) # On creer une liaison de htmlfilter vers mouth
chatBot.startSession("ProgramAB","Defaut","hsboot")
chatBot=Runtime.createAndStart("chatBot", "ProgramAB")
mouth.speakBlocking("salut! bienvenu dans ce programme de test.")
merci d’avance pour votre aide
-
This topic was modified 8 years ago by steve.
-
This topic was modified 8 years ago by steve.