I have already listed some online sites to convert your text matter into speech in Previous Posts ..
Now I have two tips for the people who have no internet connection.. One is Inbuilt feature in windows and another one is using script code...
1.INBUILT FEATURE SPEECH IN WINDOWS
In windows have inbuilt Speech software there.. By using this software we can import our text into the check box..and listen your text... To avail this follow the steps below..
Go to: START > CONTROL PANEL > SOUND,SPEECH AND AUDIO DEVICES > SPEECH > TEXT TO SPEECH (Tab)..
Now give the text you want to speech in and check box called 'Use the following text to preview the voice' and click Preview Voice
You can also change voice of the person by clicking on Voice selection on the top to change the voice of a person...
2.SPEECH USING SCRIPT CODE
Using Simple script code you can avail Speech on your machine..
Copy the code given below in notepad and save it as anyname.vbs. Make sure that you save it as .vbs file.
Dim message, sapi
message=InputBox("What do you want me to say?","Speak to Me")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak message
After making a vbs file just double click on that file and type anything you want in the textbox.
No comments:
Post a Comment