Skip to content

Commit 51e549e

Browse files
authored
Merge pull request #859 from rhurey/carbon/1.41
Speech SDK 1.41.1 doc updates
2 parents 92eb81f + 96d758f commit 51e549e

File tree

7 files changed

+58
-0
lines changed

7 files changed

+58
-0
lines changed

articles/ai-services/speech-service/includes/quickstarts/keyword-recognition/swift.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@ ms.author: eur
2121
## Use a keyword model with the Speech SDK
2222

2323
See the [sample on GitHub](https://github.com/Azure-Samples/cognitive-services-speech-sdk/blob/b4257370e1d799f0b8b64be9bf2a34cad8b1a251/samples/objective-c/ios/speech-samples/speech-samples/ViewController.m#L585) for using your Custom Keyword model with the Objective C SDK. Although we don't currently have a Swift sample for parity, the concepts are similar.
24+
25+
> [!NOTE]
26+
> If you are going to use keyword recognition in your Swift application on iOS, note that new keyword models created in Speech Studio will require using either the Speech SDK xcframework bundle from [https://aka.ms/csspeech/iosbinaryembedded](https://aka.ms/csspeech/iosbinaryembedded) or the `MicrosoftCognitiveServicesSpeechEmbedded-iOS` pod in your project.

articles/ai-services/speech-service/includes/quickstarts/platform/cpp-requirements.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ The Speech SDK for C++ only supports the following distributions on the x64, ARM
2121

2222
- Ubuntu 20.04/22.04/24.04
2323
- Debian 11/12
24+
- Amazon Linux 2023
25+
- Azure Linux 3.0
2426

2527
[!INCLUDE [Linux distributions](linux-distributions.md)]
2628

articles/ai-services/speech-service/includes/quickstarts/platform/csharp-requirements.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ The Speech SDK for C# only supports the following distributions on the x64, ARM3
2121

2222
- Ubuntu 20.04/22.04/24.04
2323
- Debian 11/12
24+
- Amazon Linux 2023
25+
- Azure Linux 3.0
2426

2527
[!INCLUDE [Linux distributions](linux-distributions.md)]
2628

articles/ai-services/speech-service/includes/quickstarts/platform/java-requirements.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ The Speech SDK for Java supports the following distributions on the x64, ARM32,
2323

2424
- Ubuntu 20.04/22.04/24.04
2525
- Debian 11/12
26+
- Amazon Linux 2023
27+
- Azure Linux 3.0
2628

2729
[!INCLUDE [Linux distributions](linux-distributions.md)]
2830

articles/ai-services/speech-service/includes/quickstarts/platform/linux-distributions.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,23 @@ sudo apt-get update
3434
sudo apt-get install build-essential ca-certificates libasound2-dev libssl-dev wget
3535
```
3636

37+
# [Amazon Linux 2023](#tab/amazon)
38+
39+
40+
Run these commands:
41+
42+
```Bash
43+
sudo yum update
44+
sudo yum install alsa-lib ca-certificates openssl wget
45+
```
46+
47+
# [Azure Linux 3.0](#tab/azure)
48+
49+
Run these commands:
50+
51+
```Bash
52+
sudo tdnf update
53+
sudo tdnf install alsa-lib ca-certificates openssl wget
54+
```
55+
3756
---

articles/ai-services/speech-service/includes/quickstarts/platform/python-requirements.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ The Speech SDK for Python supports the following distributions on the x64 and AR
2424

2525
- Ubuntu 20.04/22.04/24.04
2626
- Debian 11/12
27+
- Amazon Linux 2023
28+
- Azure Linux 3.0
2729

2830
[!INCLUDE [Linux distributions](linux-distributions.md)]
2931

articles/ai-services/speech-service/includes/release-notes/release-notes-sdk.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,34 @@ ms.topic: include
55
ms.date: 08/01/2024
66
ms.author: eur
77
---
8+
### Speech SDK 1.41.1: 2024-October release
9+
10+
#### New Features
11+
* Added support for Amazon Linux 2023 and Azure Linux 3.0.
12+
* Added public property id SpeechServiceConnection_ProxyHostBypass to specify hosts for which proxy is not used.
13+
* Added properties to control new phrase segmentation strategies.
14+
15+
#### Bug Fixes
16+
* Fixed incomplete support for keyword recognition Advanced models produced after August 2024.
17+
* https://github.com/Azure-Samples/cognitive-services-speech-sdk/issues/2564
18+
* https://github.com/Azure-Samples/cognitive-services-speech-sdk/issues/2571
19+
* https://github.com/Azure-Samples/cognitive-services-speech-sdk/issues/2590
20+
* Note that with Swift on iOS your project must use either MicrosoftCognitiveServicesSpeech-EmbeddedXCFramework-1.41.1.zip (from https://aka.ms/csspeech/iosbinaryembedded) or the MicrosoftCognitiveServicesSpeechEmbedded-iOS pod that include the Advanced model support.
21+
* Fixed a memory leak in C# related to string usage.
22+
* Fixed not being able to get SPXAutoDetectSourceLanguageResult from SPXConversationTranscriptionResult in Objective-C and Swift.
23+
* Fixed an occasional crash when using the Microsoft Audio Stack in recognition.
24+
* Fixed type hints in Python.
25+
https://github.com/Azure-Samples/cognitive-services-speech-sdk/issues/2539
26+
* Fixed not being able to fetch the list of TTS voices when using a custom endpoint.
27+
* Fixed embedded TTS re-initializing for every speak request when the voice is specified by a short name.
28+
* Fixed the API reference documentation for the max duration of RecognizeOnce audio.
29+
* Fixed error handling arbitary sampling rates in JavaScript
30+
* Thanks to [rseanhall](https://github.com/rseanhall) for this contribution.
31+
* Fixed error calculating the audio offset in JavaScript
32+
* Thanks to [motamed](https://github.com/motamed) for this contribution.
33+
34+
#### Breaking Changes
35+
* Keyword recognition support on Windows ARM 32-bit has been removed due to the required ONNX runtime not available for this platform.
836

937
### Speech SDK 1.40: 2024-August release
1038

0 commit comments

Comments
 (0)