Skip to content

Commit 050515e

Browse files
authored
Update and rename windows.quickstart.md to closed-captions-teams-interop-windows.md
1 parent 5ba4884 commit 050515e

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

articles/communication-services/how-tos/calling-sdk/includes/closed-captions/windows.quickstart.md renamed to articles/communication-services/how-tos/calling-sdk/includes/closed-captions/closed-captions-teams-interop-windows.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.service: azure-communication-services
66
ms.subservice: calling
77
ms.topic: include
88
ms.topic: include file
9-
ms.date: 03/20/20223
9+
ms.date: 03/20/2023
1010
ms.author: kpunjabi
1111
---
1212

@@ -16,7 +16,7 @@ ms.author: kpunjabi
1616
- An app with voice and video calling, refer to our [Voice](../../quickstarts/voice-video-calling/getting-started-with-calling.md) and [Video](../../quickstarts/voice-video-calling/get-started-with-video-calling.md) calling quickstarts.
1717
- [Access tokesn](../../quickstarts/manage-teams-identity.md) for Microsoft 365 users.
1818
- [Access tokesn](../../quickstarts/identity/access-tokens.md) for External identity users.
19-
- For Translated captions you will need to have a [Teams premium](https://www.microsoft.com/en-us/microsoft-teams/premium#tabx93f55452286a4264a2778ef8902fb81a) license.
19+
- For Translated captions you will need to have a [Teams premium](/MicrosoftTeams/teams-add-on-licensing/licensing-enhance-teams#meetings) license.
2020

2121
>[!NOTE]
2222
>Please note that you will need to have a voice calling app using ACS calling SDKs to access the closed captions feature that is described in the QuickStart below.
@@ -41,6 +41,8 @@ TeamsCaptionsCallFeature captionsCallFeature = call.Features.TeamsCaptions;
4141

4242
### Microsoft 365 users
4343

44+
If you're building an application for Microsoft 365 Users using ACS SDK.
45+
4446
``` cs
4547
TeamsCaptionsCallFeature captionsCallFeature = teamCall.Features.TeamsCaptions;
4648
```
@@ -116,13 +118,16 @@ captionsCallFeature.CaptionsReceived -= OnCaptionsReceived;
116118
## Spoken language support
117119

118120
### Get list of supported spoken languages
121+
119122
Get a list of supported spoken languages that your users can select from when enabling closed captions.
120123

121124
``` cs
122125
// bcp 47 formatted language code
123-
IReadOnlyList<string> sLanguages = captionsCallFeature.SupportedSpokenLanguages;```
126+
IReadOnlyList<string> sLanguages = captionsCallFeature.SupportedSpokenLanguages;
127+
```
124128

125129
### Set spoken language
130+
126131
When the user selects the spoken language, your app can set the spoken language that it expects captions to be generated from.
127132

128133
``` cs

0 commit comments

Comments
 (0)