Skip to content

Commit 1546e4b

Browse files
committed
take some of Shannons PR feedback.
1 parent f270481 commit 1546e4b

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

articles/cognitive-services/Speech-Service/how-to-configure-openssl-linux.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ Set environment variable `SSL_CERT_FILE` to point at that file before running a
4848
export SSL_CERT_FILE=/etc/pki/tls/certs/ca-bundle.crt
4949
```
5050

51-
## Certificate Revocation Checks
52-
51+
# Certificate Revocation Checks
5352
When connecting to the Speech Service, the Speech SDK will verify that the TLS certificate used by the Speech Service has not been revoked. To conduct this check, the Speech SDK will need access to the CRL distribution points for Certificate Authorities used by Azure. A list of possible CRL download locations can be found in [this document](../../security/fundamentals/tls-certificate-changes.md). If a certificate has been revoked or the CRL cannot be downloaded the Speech SDK will abort the connection and raise the Canceled event.
5453

5554
In the event the network where the Speech SDK is being used from is configured in a manner that does not permit access to the CRL download locations, the CRL check can either be disabled or set to not fail if the CRL cannot be retrieved. This configuration is done through the configuration object used to create a Recognizer object.

articles/cognitive-services/Speech-Service/includes/get-speech-sdk-linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.author: pafarley
1313
:::column:::
1414
<br>
1515
<div class="icon is-large">
16-
<img alt="Linux" src="https://docs.microsoft.com/media/logos/logo_linux-color.svg" width="60px">
16+
<img alt="Linux" src="https://docs.microsoft.com/media/logos/logo_linux.svg" width="60px">
1717
</div>
1818
:::column-end:::
1919
:::row-end:::

articles/cognitive-services/Speech-Service/includes/how-to/compressed-audio-input/java/prerequisites.md

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

99
Handling compressed audio is implemented using [GStreamer](https://gstreamer.freedesktop.org). For licensing reasons GStreamer binaries are not compiled and linked with the Speech SDK. Instead, you'll need to use the prebuilt binaries for Android. To download the prebuilt libraries, see [installing for Android development](https://gstreamer.freedesktop.org/documentation/installing/for-android-development.html?gi-language=c).
1010

11-
`libgstreamer_android.so` is required. Make sure that all the GStreamer plugins (from Android.mk file below) are linked in `libgstreamer_android.so`. When using the latest speech SDK (1.16 and above) with gstreamer version 1.18.3, `libc++_shared.so` is also required to be present from android ndk.
11+
`libgstreamer_android.so` is required. Make sure that all the GStreamer plugins (from Android.mk file below) are linked in `libgstreamer_android.so`. When using the latest speech SDK (1.16 and above) with GStreamer version 1.18.3, `libc++_shared.so` is also required to be present from android ndk.
1212

1313
```makefile
1414
GSTREAMER_PLUGINS := coreelements app audioconvert mpg123 \

0 commit comments

Comments
 (0)