Another speech blogger

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)