Skip to content

Commit e257a44

Browse files
authored
Update fast-transcription-create.md
1 parent dd43fd7 commit e257a44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/ai-services/speech-service/fast-transcription-create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The fast transcription API is a REST API that uses multipart/form-data to submit
3737

3838
Construct the request body according to the following instructions:
3939

40-
- Set the required `locales` property. This value should match the expected locale of the audio data to transcribe. The supported locales are: de-DE, en-IN, en-US, es-ES, es-MX, fr-FR, hi-IN, it-IT, ja-JP, ko-KR, pt-BR, and zh-CN. Learn more from [Speech service language support](language-support.md?tabs=stt). You can get the latest supported languages via the Rest API [Transcriptions - List Supported Locales](https://learn.microsoft.com/en-us/rest/api/speechtotext/transcriptions/list-supported-locales)
40+
- Set the required `locales` property. This value should match the expected locale of the audio data to transcribe. The supported locales are: de-DE, en-IN, en-US, es-ES, es-MX, fr-FR, hi-IN, it-IT, ja-JP, ko-KR, pt-BR, and zh-CN. Learn more from [Speech service language support](language-support.md?tabs=stt). You can get the latest supported languages via the Rest API [Transcriptions - List Supported Locales](/rest/api/speechtotext/transcriptions/list-supported-locales)
4141
- Optionally, set the `profanityFilterMode` property to specify how to handle profanity in recognition results. Accepted values are `None` to disable profanity filtering, `Masked` to replace profanity with asterisks, `Removed` to remove all profanity from the result, or `Tags` to add profanity tags. The default value is `Masked`. The `profanityFilterMode` property works the same way as via the [batch transcription API](./batch-transcription.md).
4242
- Optionally, set the `channels` property to specify the zero-based indices of the channels to be transcribed separately. If not specified, multiple channels are merged and transcribed jointly. Only up to two channels are supported. If you want to transcribe the channels from a stereo audio file separately, you need to specify `[0,1]` here. Otherwise, stereo audio will be merged to mono, mono audio will be left as is, and only a single channel will be transcribed. In either of the latter cases, the output has no channel indices for the transcribed text, since only a single audio stream is transcribed.
4343
- Optionally, set the `diarizationSettings` property to recognize and separate multiple speakers on mono channel audio file. You need to specify the minimum and maximum number of people who might be speaking in the audio file (for example, specify `"diarizationSettings": {"minSpeakers": 1, "maxSpeakers": 4}`). Then the transcription file will contain a `speaker` entry for each transcribed phrase. The feature isn't available with stereo audio when you set the `channels` property as `[0,1]`.

0 commit comments

Comments
 (0)