Talking with a speech synthesizer
Posted: 12 Dec 2015 11:00
i usually dont need help but this code line wont work ...help
the codez:
the codez:
Code: Select all
@echo off
:start
echo set speech = Wscript.CreateObject("SAPI.spVoice") >> "temp.vbs"
echo hello what should i say?
set /p talk =
set text=%talk%
echo speech.speak "%text%" >> "temp.vbs"
start temp.vbs
ping localhost -n 10 >nul
del temp.vbs
exit