Skip to content

Commit be6f778

Browse files
resolving comment
1 parent 6884a7a commit be6f778

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

articles/communication-services/how-tos/calling-sdk/includes/call-transcription/call-transcription-web.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,17 @@ callTranscriptionFeature.off('isTranscriptionActiveChanged', isTranscriptionActi
4242
[!INCLUDE [Public Preview Disclaimer](../../../../includes/public-preview-include-document.md)]
4343

4444
## Explicit Consent
45-
If your Teams meeting or call is configured to require explicit consent for recording or transcription, you are required to gather explicit consent from your users to allow users to be transcribed or recorded. You can provide consent proactively when joining the meeting or reactively when the recording or transcription starts.
45+
If your Teams meeting or call is configured to require explicit consent for recording or transcription, you are required to gather explicit consent from your users to allow users to be transcribed or recorded. You can provide consent proactively when joining the meeting or reactively when the recording or transcription starts. Until users give explicit consent, users have disabled audio, video, and screen sharing.
4646

4747
You can check if the meeting transcription requires explicit consent by property `isConsentRequired`. If the value is set to `true`, then explicit consent is required for the call.
4848

4949
```js
5050
const isTranscriptionConsentRequired = callTranscriptionFeature.isConsentRequired;
5151
```
5252

53-
If the transcription is active and explicit consent is required, user will not be able to unmute, turn video on and share screen until they provide the consent. You can provide the consent for the user by calling the method `consentToBeingRecordedAndTranscribed()`.
53+
If you already collected consent from the user to be transcribed, you can call method `consentToBeingRecordedAndTranscribed()` to indicate explicit consent to the service.
5454

5555
```js
5656
callTranscriptionFeature.consentToBeingRecordedAndTranscribed();
5757
```
58+
Attempts to enable audio, video or screen sharing will fail when transcription is active, explicit consent is required but is not yet given. You can recognize this situation by checking property `reason` of class `ParticipantCapabilities` for [capabilities](../../capabilities.md) `turnVideoOn`, `unmuteMic` and `shareScreen`. You can find those [capabilities](../../capabilities.md) in the feature `call.feature(Features.Capabilities)`. Those [capabilities](../../capabilities.md) would return reason `ExplicitConsentRequired` as users need to provide explicit consent.

0 commit comments

Comments
 (0)