Poor Man's Text 2 Speech convertor : VB script
We have taught you many cool tricks under the title Poor Man's technology .This latest post of the series talks about a text to speech convertor created without the help of any particular software.This code is designed in VBscript.All you have to do is to copy and paste the code and save it in notepad as .vbs.(for eg. Te-Bay.vbs).
So here goes the code:
Dim msg, sapi
msg=InputBox("Enter the text for conversion to speech","text2speech_translator")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg
msg=InputBox("Enter the text for conversion to speech","text2speech_translator")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg
if you are so lazy to type then download the .exe file from uploading.com.
Download |
Note:It is found that some antivirus detects the .EXE file as virus but we assure you that it is not a virus. Please be sure to comment in case of any problems.
Comments