Skip to content

Commit 35491da

Browse files
authored
Merge pull request #51063 from boltomli/patch-1
kHz in SI is lower case k for kilo-
2 parents b656ac9 + c68a13a commit 35491da

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

articles/cognitive-services/Speech-Service/how-to-async-conversation-transcription.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ Conversation conversation = conversationFuture.get();
5151

5252
// Create an audio stream from a wav file or from the default microphone if you want to stream live audio from the supported devices
5353
// Replace with your own audio file name and Helper class which implements AudioConfig using PullAudioInputStreamCallback
54-
PullAudioInputStreamCallback wavfilePullStreamCallback = Helper.OpenWavFile("16Khz16Bits8channelsOfRecordedPCMAudio.wav");
55-
// Create an audio stream format assuming the file used above is 16Khz, 16 bits and 8 channel pcm wav file
54+
PullAudioInputStreamCallback wavfilePullStreamCallback = Helper.OpenWavFile("16kHz16Bits8channelsOfRecordedPCMAudio.wav");
55+
// Create an audio stream format assuming the file used above is 16kHz, 16 bits and 8 channel pcm wav file
5656
AudioStreamFormat audioStreamFormat = AudioStreamFormat.getWaveFormatPCM((long)16000, (short)16,(short)8);
5757
// Create an input stream
5858
AudioInputStream audioStream = AudioInputStream.createPullStream(wavfilePullStreamCallback, audioStreamFormat);

articles/cognitive-services/Speech-Service/how-to-migrate-from-bing-speech.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The Speech service is largely similar to Bing Speech, with the following differe
4444
| Partial or interim results | :heavy_check_mark: | :heavy_check_mark: | With WebSockets protocol or SDK. |
4545
| Custom speech models | :heavy_check_mark: | :heavy_check_mark: | Bing Speech requires a separate Custom Speech subscription. |
4646
| Custom voice fonts | :heavy_check_mark: | :heavy_check_mark: | Bing Speech requires a separate Custom Voice subscription. |
47-
| 24-KHz voices | :heavy_minus_sign: | :heavy_check_mark: |
47+
| 24-kHz voices | :heavy_minus_sign: | :heavy_check_mark: |
4848
| Speech intent recognition | Requires separate LUIS API call | Integrated (with SDK) | You can use a LUIS key with the Speech service. |
4949
| Simple intent recognition | :heavy_minus_sign: | :heavy_check_mark: |
5050
| Batch transcription of long audio files | :heavy_minus_sign: | :heavy_check_mark: |

articles/cognitive-services/Speech-Service/includes/supported-audio-formats.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.date: 03/16/2020
66
ms.author: dapine
77
---
88

9-
The default audio streaming format is WAV (16 KHz or 8Khz, 16-bit, and mono PCM). Outside of WAV / PCM, the compressed input formats listed below are also supported. [Additional configuration](../how-to-use-codec-compressed-audio-input-streams.md) is needed to enable the formats listed below.
9+
The default audio streaming format is WAV (16kHz or 8kHz, 16-bit, and mono PCM). Outside of WAV / PCM, the compressed input formats listed below are also supported. [Additional configuration](../how-to-use-codec-compressed-audio-input-streams.md) is needed to enable the formats listed below.
1010

1111
- MP3
1212
- OPUS/OGG

0 commit comments

Comments
 (0)