RecognizedAudio.AudioPosition Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the location in the input audio stream for the start of the recognized audio.
public:
property TimeSpan AudioPosition { TimeSpan get(); };
public TimeSpan AudioPosition { get; }
member this.AudioPosition : TimeSpan
Public ReadOnly Property AudioPosition As TimeSpan
Property Value
The location in the input audio stream for the start of the recognized audio.
Examples
The following example handles the SpeechRecognitionEngine.SpeechRecognized or SpeechRecognizer.SpeechRecognized event and outputs to the console information about the recognized audio that is associated with the recognition result.
// Handle the SpeechRecognized event.
void SpeechRecognizedHandler(object sender, SpeechRecognizedEventArgs e)
{
if (e.Result == null) return;
RecognitionResult result = e.Result;
Console.WriteLine("Grammar({0}): {1}",
result.Grammar.Name, result.Text);
if (e.Result.Audio != null)
{
RecognizedAudio audio = e.Result.Audio;
Console.WriteLine(" start time: {0}", audio.StartTime);
Console.WriteLine(" encoding format: {0}", audio.Format.EncodingFormat);
Console.WriteLine(" position: {0}, duration: {1}",
audio.AudioPosition, audio.Duration);
}
// Add event handler code here.
}
Remarks
This property references the position at the beginning of the recognized phrase in the input device's generated audio stream. By contrast, the RecognizerAudioPosition
property of the SpeechRecognitionEngine and SpeechRecognizer classes reference the recognizer's position within its audio input. These positions can be different. For more information, see Using Speech Recognition Events.
The StartTime property gets the system time at the start of the recognition operation.