Search (advanced search) | ||||
Use this Search form before posting, asking or make a new thread.
|
12-16-2018, 10:28 PM
Post: #11
|
|||
|
|||
RE: [GET] How to make a free text to speech tool in windows PC using notepad
How much text can this script "speak"?
|
|||
12-17-2018, 03:31 AM
(This post was last modified: 12-17-2018 03:38 AM by Tsc90.)
Post: #12
|
|||
|
|||
RE: [GET] How to make a free text to speech tool in windows PC using notepad
Wow. Not bad for a few lines of code. It speaks about 220 characters or about 3 sentences.
|
|||
12-17-2018, 05:35 AM
Post: #13
|
|||
|
|||
RE: [GET] How to make a free text to speech tool in windows PC using notepad
How to save that audio??
|
|||
12-17-2018, 07:44 AM
Post: #14
|
|||
|
|||
RE: [GET] How to make a free text to speech tool in windows PC using notepad
very cool thanks for sharing ..reps sent
|
|||
12-17-2018, 07:57 AM
Post: #15
|
|||
|
|||
RE: [GET] How to make a free text to speech tool in windows PC using notepad | |||
12-17-2018, 08:32 AM
Post: #16
|
|||
|
|||
RE: [GET] How to make a free text to speech tool in windows PC using notepad
Thanks for the info but wont work for me keeps saying no script engine for extension vbs
|
|||
12-17-2018, 08:40 AM
Post: #17
|
|||
|
|||
RE: [GET] How to make a free text to speech tool in windows PC using notepad
Thanks n Rep
|
|||
01-08-2019, 06:56 PM
Post: #18
|
|||
|
|||
RE: [GET] How to make a free text to speech tool in windows PC using notepad
Hello Bro
Great Thank you Good luck |
|||
01-08-2019, 07:26 PM
Post: #19
|
|||
|
|||
RE: [GET] How to make a free text to speech tool in windows PC using notepad
In answer to these 2 question:
(12-16-2018 10:28 PM)zaff Wrote: How much text can this script "speak"? (11-03-2018 03:48 PM)ndr_net Wrote: is there any way to save that audio?? Found this which may help (not tried it): 1. Should allow more text. 2. Save sound file. Code: Set objVoice = CreateObject("SAPI.SpVoice") Set objStream = CreateObject("SAPI.SpFileStream") Line="Enter your text here" ObjStream.Open "c:\users\HelloThere.wav", 3, vbFalse set objVoice.AudioOutputStream = objStream objVoice.Speak Line +++++ Reps appreciated if found useful +++++ Thanks, S. Rise Up. Be Yourself.
When You Feel Like Quitting, Remember Why You Started... |
|||
01-09-2019, 01:33 AM
Post: #20
|
|||
|
|||
RE: [GET] How to make a free text to speech tool in windows PC using notepad | |||