Skip to content

Instantly share code, notes, and snippets.

View royninja's full-sized avatar
📚
Focusing

Sayan Roy royninja

📚
Focusing
View GitHub Profile
@royninja
royninja / text2voice.vbs
Created February 28, 2017 06:18
this script will ask you to enter a message and it will deliver your text over voice
Dim message, sapi
message = InputBox("Text to Audio converter"+vbcrlf+"by whoami","Text to Audio")
Set sapi = CreateObject("sapi.spvoice")
sapi.Speak message