DannyB Posted October 14, 2011 Share Posted October 14, 2011 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 More sharing options...
Spiff59 Posted October 14, 2011 Share Posted October 14, 2011 (edited) After$Stream = ObjCreate( "SAPI.SpFileStream" )Insert$Stream.Format.Type = 34You can 'count' which value gets you what output type using this list :http://msdn.microsoft.com/en-us/library/ms717276(VS.85).aspx Edited October 14, 2011 by Spiff59 Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now