SetInputToAudioStream Method

Microsoft Speech Platform SDK 11

Collapse imageExpand ImageCopy imageCopyHover image

Configures the SpeechRecognitionEngine object to receive input from an audio stream.

Namespace:  Microsoft.Speech.Recognition
Assembly:  Microsoft.Speech (in Microsoft.Speech.dll)

Syntax

Visual Basic (Declaration)
Public Sub SetInputToAudioStream ( _
	audioSource As Stream, _
	audioFormat As SpeechAudioFormatInfo _
)
Visual Basic (Usage)
Dim instance As SpeechRecognitionEngine
Dim audioSource As Stream
Dim audioFormat As SpeechAudioFormatInfo

instance.SetInputToAudioStream(audioSource, _
	audioFormat)
C#
public void SetInputToAudioStream(
	Stream audioSource,
	SpeechAudioFormatInfo audioFormat
)

Parameters

audioSource
Type: System.IO..::..Stream

The audio input stream.

audioFormat
Type: Microsoft.Speech.AudioFormat..::..SpeechAudioFormatInfo

The format of the audio input.

Remarks

If the recognizer reaches the end of the input stream during a recognition operation, the recognition operation finalizes with the available input. Any subsequent recognition operations can generate an exception, unless you update the input to the recognizer.

See Also