Jump to content

Need help with Text To Speech output format


DannyB
 Share

Recommended Posts

Hello,

I am trying to store a text to speech output using SAPI.SpVoice to a WAV file.

I have managed to do so, only the output format is too low in quality.

I have tried browsing MSDN for some answers, but couldn't figure out how to set the output format using AutoIt

Here is what I have, would appreciate any help.

$tts = ObjCreate( "SAPI.SpVoice" )
$Text = "Testing 1 2 3"
 
; Speak aloud
$tts.Speak( $Text )
 
; Prepare file output stream
$Stream = ObjCreate( "SAPI.SpFileStream" )
$Stream.Open( "test.wav", 3, true )
 
; Need to set format here (to SPSF_44kHz16BitMono? )
; $fmt = ObjCreate( "SAPI.SpeechAudioFormatInfo" )
 
; Save wave file
$tts.AudioOutputStream = $Stream
$tts.Speak( $Text )
$Stream.Close()
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...