次の方法で共有


RecognizedAudio.Duration プロパティ

定義

認識されたオーディオの入力オーディオ ストリームの時間を取得します。

public:
 property TimeSpan Duration { TimeSpan get(); };
public TimeSpan Duration { get; }
member this.Duration : TimeSpan
Public ReadOnly Property Duration As TimeSpan

プロパティ値

認識されたオーディオのオーディオ入力ストリーム内の時間。

次の例では、 イベントまたは SpeechRecognizer.SpeechRecognized イベントをSpeechRecognitionEngine.SpeechRecognized処理し、認識結果に関連付けられている認識されたオーディオに関するコンソール情報に出力します。

// 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.  
}  

適用対象

こちらもご覧ください