Skip to content

Commit 793bd0d

Browse files
committed
Acrolinx suggestions
1 parent ff6d0fc commit 793bd0d

File tree

7 files changed

+35
-52
lines changed

7 files changed

+35
-52
lines changed

articles/communication-services/quickstarts/voice-video-calling/get-started-pre-call-diagnostics.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Quickstart - Add pre call diagnostics to your app
2+
title: Quickstart - Add precall diagnostics to your app
33
titleSuffix: An Azure Communication Services quickstart
4-
description: In this quickstart, you'll learn how to add pre call diagnostics capabilities to your app by using Azure Communication Services.
4+
description: In this quickstart, you will learn how to add pre call diagnostics capabilities to your app by using Azure Communication Services.
55
author: yassirbisteni
66

77
ms.author: ybisteni
@@ -30,9 +30,18 @@ ms.custom: mode-other, devx-track-js
3030
[!INCLUDE [Precall diagnostics with iOS](./includes/pre-call-diagnostics/pre-call-diagnostics-ios.md)]
3131
::: zone-end
3232

33+
## Pricing
34+
35+
When the pre-call diagnostic test runs behind the scenes, it uses calling minutes to run the diagnostic. The test lasts for roughly 30 seconds, using up 30 seconds of calling time which is charged at the standard rate of $0.004 per participant per minute. For the case of pre-call diagnostics, the charge is for 1 participant x 30 seconds = $0.002.
36+
3337
## Next steps
3438

35-
For more information, see the following articles:
39+
- [Check your network condition with the diagnostics tool](../../concepts/developer-tools/network-diagnostic.md)
40+
- [Explore User-Facing Diagnostic APIs](../../concepts/voice-video-calling/user-facing-diagnostics.md)
41+
- [Enable Media Quality Statistics in your application](../../concepts/voice-video-calling/media-quality-sdk.md)
42+
- [Consume call logs with Azure Monitor](../../concepts/analytics/logs/voice-and-video-logs.md)
43+
44+
## Related articles
3645

3746
- Check out the [calling hero sample](../../samples/calling-hero-sample.md).
3847
- Get started with the [UI Library](../../concepts/ui-library/ui-library-overview.md).

articles/communication-services/quickstarts/voice-video-calling/get-started-raw-media-access.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,12 @@ ms.custom: mode-other, devx-track-js
3636

3737
## Next steps
3838

39-
For more information, see the following articles:
39+
- [Check your network condition with the diagnostics tool](../../concepts/developer-tools/network-diagnostic.md)
40+
- [Explore User-Facing Diagnostic APIs](../../concepts/voice-video-calling/user-facing-diagnostics.md)
41+
- [Enable Media Quality Statistics in your application](../../concepts/voice-video-calling/media-quality-sdk.md)
42+
- [Consume call logs with Azure Monitor](../../concepts/analytics/logs/voice-and-video-logs.md)
43+
44+
## Related articles
4045

4146
- Check out the [calling hero sample](../../samples/calling-hero-sample.md).
4247
- Get started with the [UI Library](../../concepts/ui-library/ui-library-overview.md).

articles/communication-services/quickstarts/voice-video-calling/includes/pre-call-diagnostics/pre-call-diagnostics-android.md

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,4 @@ The permission check determines whether video and audio devices are available fr
7474

7575
```java
7676
List<DevicePermissionType> permissionList = preCallDiagnosticsFeature.getDevicePermissions(context);
77-
```
78-
79-
## Pricing
80-
81-
When the precall diagnostic test runs behind the scenes, it uses calling minutes to run the diagnostic. The test lasts for roughly 30 seconds, using up 30 seconds of calling time which is charged at the standard rate of $0.004 per participant per minute. For the case of precall diagnostics, the charge is for 1 participant x 30 seconds = $0.002.
82-
83-
## Next steps
84-
85-
- [Check your network condition with the diagnostics tool](../developer-tools/network-diagnostic.md)
86-
- [Explore User-Facing Diagnostic APIs](../voice-video-calling/user-facing-diagnostics.md)
87-
- [Enable Media Quality Statistics in your application](../voice-video-calling/media-quality-sdk.md)
88-
- [Consume call logs with Azure Monitor](../analytics/logs/voice-and-video-logs.md)
77+
```

articles/communication-services/quickstarts/voice-video-calling/includes/pre-call-diagnostics/pre-call-diagnostics-ios.md

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -99,15 +99,4 @@ The permission check determines whether video and audio devices are available fr
9999

100100
```swift
101101
let permissionList = preCallDiagnosticsFeature?.devicePermissions()
102-
```
103-
104-
## Pricing
105-
106-
When the precall diagnostic test runs behind the scenes, it uses calling minutes to run the diagnostic. The test lasts for roughly 30 seconds, using up 30 seconds of calling time which is charged at the standard rate of $0.004 per participant per minute. For the case of precall diagnostics, the charge is for 1 participant x 30 seconds = $0.002.
107-
108-
## Next steps
109-
110-
- [Check your network condition with the diagnostics tool](../developer-tools/network-diagnostic.md)
111-
- [Explore User-Facing Diagnostic APIs](../voice-video-calling/user-facing-diagnostics.md)
112-
- [Enable Media Quality Statistics in your application](../voice-video-calling/media-quality-sdk.md)
113-
- [Consume call logs with Azure Monitor](../analytics/logs/voice-and-video-logs.md)
102+
```

articles/communication-services/quickstarts/voice-video-calling/includes/pre-call-diagnostics/pre-call-diagnostics-javascript.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -145,14 +145,3 @@ At this step, there are multiple possible failure points. The values provided by
145145

146146
- If a connection fails, prompt users to recheck their network connectivity. Connection failures can also be attributed to network conditions like DNS, proxies, or firewalls. For more information on recommended network setting, see [Network recommendations](network-requirements.md).
147147
- If bandwidth is `Bad`, prompt users to try a different network or verify the bandwidth availability on their current network. Ensure no other high bandwidth activities are taking place.
148-
149-
## Pricing
150-
151-
When the precall diagnostic test runs behind the scenes, it uses calling minutes to run the diagnostic. The test lasts for roughly 30 seconds, using up 30 seconds of calling time which is charged at the standard rate of $0.004 per participant per minute. For the case of precall diagnostics, the charge is for 1 participant x 30 seconds = $0.002.
152-
153-
## Next steps
154-
155-
- [Check your network condition with the diagnostics tool](../developer-tools/network-diagnostic.md)
156-
- [Explore User-Facing Diagnostic APIs](../voice-video-calling/user-facing-diagnostics.md)
157-
- [Enable Media Quality Statistics in your application](../voice-video-calling/media-quality-sdk.md)
158-
- [Consume call logs with Azure Monitor](../analytics/logs/voice-and-video-logs.md)

articles/communication-services/quickstarts/voice-video-calling/includes/pre-call-diagnostics/pre-call-diagnostics-windows.md

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,4 @@ The permission check determines whether video and audio devices are available fr
7575

7676
```c#
7777
var permissionList = preCallDiagnosticsFeature.DevicePermissions;
78-
```
79-
80-
## Pricing
81-
82-
When the precall diagnostic test runs behind the scenes, it uses calling minutes to run the diagnostic. The test lasts for roughly 30 seconds, using up 30 seconds of calling time which is charged at the standard rate of $0.004 per participant per minute. For the case of precall diagnostics, the charge is for 1 participant x 30 seconds = $0.002.
83-
84-
## Next steps
85-
86-
- [Check your network condition with the diagnostics tool](../developer-tools/network-diagnostic.md)
87-
- [Explore User-Facing Diagnostic APIs](../voice-video-calling/user-facing-diagnostics.md)
88-
- [Enable Media Quality Statistics in your application](../voice-video-calling/media-quality-sdk.md)
89-
- [Consume call logs with Azure Monitor](../analytics/logs/voice-and-video-logs.md)
78+
```

articles/zone-pivot-groups.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1722,4 +1722,17 @@ groups:
17221722
- id: premium
17231723
title: Premium v2 and Premium v3
17241724
- id: isolated
1725-
title: Isolated v2 (App Service Environment)
1725+
title: Isolated v2 (App Service Environment)
1726+
#Owner: yassirbisteni
1727+
- id: acs-plat-web-windows-android-ios
1728+
title: Platforms
1729+
prompt: Choose a platform
1730+
pivots:
1731+
- id: platform-web
1732+
title: JavaScript
1733+
- id: platform-windows
1734+
title: Windows
1735+
- id: platform-android
1736+
title: Android
1737+
- id: platform-ios
1738+
title: iOS

0 commit comments

Comments
 (0)