You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -106,6 +106,9 @@ Prioritize `Latency` if you need a low-latency result such as during live stream
106
106
* **At-start:** With at-start LID in `Latency` mode the result is returned in less than 5 seconds. With at-start LID in `Accuracy` mode the result is returned within 30 seconds. You set the priority for at-start LID with the `SpeechServiceConnection_SingleLanguageIdPriority` property.
107
107
* **Continuous:** With continuous LID in `Latency` mode the results are returned every 2 seconds for the duration of the audio. With continuous LID in `Accuracy` mode the results are returned within no set time frame for the duration of the audio. You set the priority for continuous LID with the `SpeechServiceConnection_ContinuousLanguageIdPriority` property.
108
108
109
+
> [!IMPORTANT]
110
+
> With [speech-to-text](#speech-to-text) and [speech translation](#speech-translation) continuous recognition, do not set `Accuracy`with the SpeechServiceConnection_ContinuousLanguageIdPriority property. The setting will be ignored without error, and the default priority of `Latency` will remain in effect. Only [standalone language identification](#standalone-language-identification) supports continuous LID with `Accuracy` prioritization.
111
+
109
112
Speech uses at-start LID with `Latency` prioritization by default. You need to set a priority property for any other LID configuration.
110
113
111
114
::: zone pivot="programming-language-csharp"
@@ -133,7 +136,7 @@ For continuous LID using `Latency` as the priority, the Speech service returns o
133
136
134
137
Language identification is completed with recognition objects and operations. You will make a request to the Speech service for recognition of audio.
135
138
136
-
> [!IMPORTANT]
139
+
> [!NOTE]
137
140
> Don't confuse recognition with identification. Recognition can be used with or without language identification.
138
141
139
142
Let's map these concepts to the code. You will either call the recognize once method, or the start and stop continuous recognition methods. You choose from:
@@ -290,7 +293,6 @@ using (var recognizer = new SpeechRecognizer(
0 commit comments