Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Chris Schindler from the Speech Server team started his blog yesterday!
Today's speech API tidbit: the synthesizer API can also splice audio files into the output stream. Try this:
Dim pb As New PromptBuilder
pb.AppendAudio("c:\windows\media\notify.wav")
pb.AppendText("You have an appointment with Dave in 15 minutes.")
Dim synth As New SpeechSynthesizer
synth.SpeakAsync(pb)