Skip to content

Commit 43756a0

Browse files
authored
minor tone changes
1 parent cc07110 commit 43756a0

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

articles/communication-services/tutorials/migrating-to-azure-communication-services-calling.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ However, there are some key differences between them that may affect your choice
2626
- **Device Management and Media enablement** - The SDK manages audio and video devices, efficiently encodes content for transmission, and supports both screen and application sharing.
2727
- **PSTN calling** - You can use the SDK to initiate voice calling using the traditional Public Switched Telephone Network (PSTN), [using phone numbers acquired either in the Azure portal](../quickstarts/telephony/get-phone-number.md) or programmatically.
2828
- **Teams Meetings** – Azure Communication Services is equipped to [join Teams meetings](../quickstarts/voice-video-calling/get-started-teams-interop.md) and interact with Teams voice and video calls.
29-
- **Notifications** - Azure Communication Services provides APIs to notify clients of incoming calls. This allows your application to listen for events (such as incoming calls) even when your application is not running in the foreground.
29+
- **Notifications** - Azure Communication Services provides APIs to notify clients of incoming calls. This allows your application to listen for events (such as incoming calls) even when your application isn't running in the foreground.
3030
- **User Facing Diagnostics** - Azure Communication Services uses [events](../concepts/voice-video-calling/user-facing-diagnostics.md) designed to provide insights into underlying issues that could affect call quality. You can subscribe your application to triggers such as weak network signals or muted microphones for proactive issue awareness.
31-
- **Media Quality Statistics** - Provides comprehensive insights into VoIP and video call [metrics](../concepts/voice-video-calling/media-quality-sdk.md). Metrics includ call quality information, empowering developers to enhance communication experiences.
31+
- **Media Quality Statistics** - Provides comprehensive insights into VoIP and video call [metrics](../concepts/voice-video-calling/media-quality-sdk.md). Metrics include call quality information, empowering developers to enhance communication experiences.
3232
- **Video Constraints** - Azure Communication Services offers APIs that control [video quality among other parameters](../quickstarts/voice-video-calling/get-started-video-constraints.md) during video calls. The SDK supports different call situations for varied levels of video quality, so developers can adjust parameters like resolution and frame rate.
3333

3434
**For a more detailed understanding of the Calling SDK for different platforms, see** [**this document**](../concepts/voice-video-calling/calling-sdk-features.md#detailed-capabilities)**.**
@@ -57,7 +57,7 @@ For Video Calling as a Teams user:
5757

5858
The UI library simplifies the process of creating modern communication user interfaces using Azure Communication Services. It offers a collection of ready-to-use UI components that you can easily integrate into your application.
5959

60-
This open source prebuilt set of controls enables you to create aesthetically pleasing designs using [Fluent UI SDK](https://developer.microsoft.com/en-us/fluentui#/) components and develop high quality audio/video communication experiences. For more information, check out the the [Azure Communications Services UI Library overview](../concepts/ui-library/ui-library-overview.md). The overview includes comprehensive information about both web and mobile platforms.
60+
This open source prebuilt set of controls enables you to create aesthetically pleasing designs using [Fluent UI SDK](https://developer.microsoft.com/en-us/fluentui#/) components and develop high quality audio/video communication experiences. For more information, check out the [Azure Communications Services UI Library overview](../concepts/ui-library/ui-library-overview.md). The overview includes comprehensive information about both web and mobile platforms.
6161

6262
### Calling support
6363

@@ -112,7 +112,7 @@ The following classes and interfaces handle some of the main features of the Azu
112112
| AudioOptions | Audio options, provided to a participant when making an outgoing call or joining a group call. |
113113
| AudioIssue | Represents the end of call survey audio issues. Example responses might be `NoLocalAudio` - the other participants were unable to hear me, or `LowVolume` - the call audio volume was too low. |
114114

115-
When using in a Teams implementation there are a few differences:
115+
When using ACS calling in a Teams call, there are a few differences:
116116

117117
- Instead of `CallAgent` - use `TeamsCallAgent` for starting and managing Teams calls.
118118
- Instead of `Call` - use `TeamsCall` for representing a Teams Call.
@@ -383,7 +383,7 @@ Or:
383383
videoTrack.enable();
384384
```
385385

386-
If there is a later created video track, attach it locally:
386+
If there's a later created video track, attach it locally:
387387
388388
```javascript
389389
const videoElement = videoTrack.attach();
@@ -452,7 +452,7 @@ call.off('isLocalVideoStartedChanged', () => {
452452

453453
```
454454

455-
### Rendering a remote users video
455+
### Rendering a remote user's video
456456

457457
#### Twilio
458458

@@ -747,7 +747,7 @@ twilioRoom..on('trackSubscribed', (track, publication, participant) => {
747747

748748
```
749749

750-
It is not possible to mute incoming audio in Twilio Video SDK.
750+
It isn't possible to mute incoming audio in Twilio Video SDK.
751751

752752
#### Azure Communication Services
753753

@@ -780,7 +780,7 @@ await call.unmuteIncomingAudio();
780780

781781
#### Twilio
782782

783-
To detect the loudest Participant in the Room, uce Dominant Speaker API. You can enable it in the connection options when joining the Group Room with at least 2 participants:
783+
To detect the loudest Participant in the Room, use the Dominant Speaker API. You can enable it in the connection options when joining the Group Room with at least 2 participants:
784784
```javascript
785785
twilioRoom = await twilioVideo.connect('token', {
786786
name: 'roomName',
@@ -830,7 +830,7 @@ callDominantSpeakersApi.on('dominantSpeakersChanged', dominantSpeakersChangedHan
830830
## Enabling screen sharing
831831
### Twilio
832832

833-
To share the screen in Twilio Video, abtain thesource track via `navigator.mediaDevices`:
833+
To share the screen in Twilio Video, obtain the source track via `navigator.mediaDevices`:
834834

835835
Chromium-based browsers:
836836
```javascript
@@ -934,7 +934,7 @@ mediaStatsCollector.dispose();
934934
```
935935

936936

937-
You do not need to call the dispose method of `mediaStatsCollector` every time a call ends. The collectors are reclaimed internally when the call ends.
937+
You don't need to call the dispose method of `mediaStatsCollector` every time a call ends. The collectors are reclaimed internally when the call ends.
938938

939939
For more information, see [Media quality statistics](../concepts/voice-video-calling/media-quality-sdk.md?pivots=platform-web).
940940

@@ -1032,7 +1032,7 @@ userFacingDiagnostics.media.on('diagnosticChanged', diagnosticChangedListener);
10321032

10331033
To learn more about User Facing Diagnostics and the different diagnostic values available, see [User Facing Diagnostics](../concepts/voice-video-calling/user-facing-diagnostics.md?pivots=platform-web).
10341034

1035-
Azure Communication Services also provides a pre-call diagnostics API. To Access the Pre-Call API, you need to initialize a `callClient`, and provision an Azure Communication Services access token. Then you can access the `PreCallDiagnostics` feature and the `startTest` method.
1035+
Azure Communication Services also provides a precall diagnostics API. To Access the Pre-Call API, you need to initialize a `callClient`, and provision an Azure Communication Services access token. Then you can access the `PreCallDiagnostics` feature and the `startTest` method.
10361036

10371037
```javascript
10381038
import { CallClient, Features} from "@azure/communication-calling";

0 commit comments

Comments
 (0)