Categories
Fun & Entertainment How-To Guides Tips and Tricks Windows

How to make your own Text to Speech Converter

Earlier you might have read the list of online text to speech converters, they are good if you want to listen the files in mp3 format. But if you want a small piece of text to be converted into sound/speech, then those website gets out of mind.

You know, you can make your own Text to Speech Converter within a few seconds?

Just Open the notepad, and paste the following code in it,

Dim message, sapi
message=InputBox(“What do you want me to say?”,”Text To Voice”)
Set sapi=CreateObject(“sapi.spvoice”)
sapi.Speak message

Now save that text file with some name for example, TipsRing-Text-2-Speech-Converter.vbs and you’re done. Now open the software by double clicking on it (where you saved that file), and from now onwards, whenever there is some need to convert text to speech, you can open your own text to speech converter.

How To Make Your Own Text to Speech Converter

Type some text in the provided box and hit OK. You will get the sound for the text you entered.

This Text To Voice converter has been tested on Windows XP, Vista and 7.

Isn’t it cool! Why not share your opinion in the form of comment!

Leave a Reply

Your email address will not be published. Required fields are marked *