Skip to content

Commit d849656

Browse files
committed
Incorporate feedback
1 parent b36a174 commit d849656

File tree

2 files changed

+3
-3
lines changed
  • articles/ai-services/speech-service/includes/how-to/recognize-speech

2 files changed

+3
-3
lines changed

articles/ai-services/speech-service/includes/how-to/recognize-speech/cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ cout << "RECOGNIZED: Text=" << result->Text << std::endl;
6868
6969
The [Recognizer class](/cpp/cognitive-services/speech/speechrecognizer) for the Speech SDK for C++ exposes a few methods that you can use for speech recognition.
7070
71-
### Single-shot recognition
71+
## Single-shot recognition
7272
7373
Single-shot recognition asynchronously recognizes a single utterance. The end of a single utterance is determined by listening for silence at the end or until a maximum of 15 seconds of audio is processed. Here's an example of asynchronous single-shot recognition via [`RecognizeOnceAsync`](/cpp/cognitive-services/speech/speechrecognizer#recognizeonceasync):
7474
@@ -108,7 +108,7 @@ switch (result->Reason)
108108
}
109109
```
110110

111-
### Continuous recognition
111+
## Continuous recognition
112112

113113
Continuous recognition is a bit more involved than single-shot recognition. It requires you to subscribe to the `Recognizing`, `Recognized`, and `Canceled` events to get the recognition results. To stop recognition, you must call [StopContinuousRecognitionAsync](/cpp/cognitive-services/speech/speechrecognizer#stopcontinuousrecognitionasync). Here's an example of continuous recognition performed on an audio input file.
114114

articles/ai-services/speech-service/includes/how-to/recognize-speech/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ ms.author: eur
88

99
In this how-to guide, you learn how to use Azure AI Speech for real-time speech to text conversion. Real-time speech recognition is ideal for applications requiring immediate transcription, such as dictation, call center assistance, and captioning for live meetings.
1010

11-
To learn how to set up the environment for a sample application, see [Quickstart: Recognize and convert speech to text](get-started-speech-to-text.md).
11+
To learn how to set up the environment for a sample application, see [Quickstart: Recognize and convert speech to text](../../../get-started-speech-to-text.md).

0 commit comments

Comments
 (0)