Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate

Say - speaks out it's own command line [CMD]


  • Please log in to reply
3 replies to this topic
BoBo
  • Guests
  • Last active:
  • Joined: --

say - is a tiny Windows application that speaks out it's own command line. It's influenced by Mac OS X say command that does exactly same thing. You can use it in batch jobs, auto start (run key in registry) etc. Make sure to put it in %PATH% based folder like windows\system32. Required is Windows XP or above. For older versions you'll need to install Speech SDK

[Download]
[Source] C++

8)

majkinetor
  • Moderators
  • 4512 posts
  • Last active: May 20 2019 07:41 AM
  • Joined: 24 May 2006
kewl
Posted Image

evilc
  • Members
  • 340 posts
  • Last active: Oct 27 2015 11:07 PM
  • Joined: 17 Nov 2005
Hi, is there any chance of a version of this that if called again, stops the existing voice instead of waiting for it to finish?

Thanks

  • Guests
  • Last active:
  • Joined: --
here's a vbscript that does the same thing


say.vbs:
strText = Wscript.Arguments(0)

Set objVoice = CreateObject("SAPI.SpVoice")
objVoice.Speak strText