Skip to content

Commit b2de104

Browse files
authored
Merge pull request #11 from valindrae/media-streaming-edits
Updates based on PR review feedback
2 parents 26ff94e + c276d99 commit b2de104

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

articles/communication-services/concepts/voice-video-calling/media-streaming.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Media Streaming overview
2+
title: Media streaming overview
33
description: Conceptual information about using Media Streaming APIs with Call Automation.
44
author: Kunaal
55
ms.service: azure-communication-services
@@ -9,7 +9,7 @@ ms.author: kpunjabi
99
ms.custom: private_preview
1010
---
1111

12-
# Media Streaming Overview - Audio Subscription
12+
# Media streaming overview - audio subscription
1313

1414
> [!IMPORTANT]
1515
> Functionality described on this document is currently in private preview. Private preview includes access to SDKs and documentation for testing purposes that are not yet available publicly.
@@ -34,7 +34,7 @@ Audio streams can be used in many ways, below are some examples of how developer
3434

3535
## Sample architecture for subscribing to audio streams from an ongoing call
3636

37-
![Screenshot of flow for play action.](./media/media_streaming.png)
37+
[![Screenshot of flow for play action.](./media/media_streaming_flow.png)](./media/media_streaming_flow.png#lightbox)
3838

3939
## Supported formats
4040

98.4 KB
Loading

articles/communication-services/quickstarts/voice-video-calling/includes/call-automation-media/media-streaming-quickstart-csharp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You can optionally use Azure services Azure WebApps that allows you to create an
2626
## Establish a call
2727
In this quickstart we assume that you're already familiar with starting calls. If you need to learn more about starting and establishing calls, you can follow our [quickstart](../../callflows-for-customer-interactions.md). For the purposes of this quickstart, we'll be going through the process of starting media streaming for both incoming calls and outbound calls.
2828

29-
## Start media streaming - Incoming call
29+
## Start media streaming - incoming call
3030
Your application will start receiving media streams once you answer the call and provide ACS with the WebSocket information.
3131

3232
``` csharp
@@ -42,7 +42,7 @@ var mediaStreamingOptions = new MediaStreamingOptions(
4242
var response = await callingServerClient.AnswerCallAsync(answerCallOptions);
4343
```
4444

45-
## Start media streaming - Outbound call
45+
## Start media streaming - outbound call
4646
Your application will start receiving media streams once you create the call and provide ACS with the WebSocket information.
4747

4848
``` csharp

articles/communication-services/quickstarts/voice-video-calling/includes/call-automation-media/media-streaming-quickstart-java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You can optionally use Azure services Azure WebApps that allows you to create an
2626
## Establish a call
2727
In this quickstart we assume that you're already familiar with starting calls. If you need to learn more about starting and establishing calls, you can follow our [quickstart](../../callflows-for-customer-interactions.md). For the purposes of this quickstart, we'll be going through the process of starting media streaming for both incoming calls and outbound calls.
2828

29-
## Start media streaming - Incoming call
29+
## Start media streaming - incoming call
3030
Your application will start receiving media streams once you answer the call and provide ACS with the WebSocket information.
3131

3232
``` java
@@ -41,7 +41,7 @@ var answerCallOptions = new AnswerCallOptions(“<incomingCallContext>”, callC
4141
var answerCallResponse = callAutomationAsyncClient.answerCallWithResponse(answerCallOptions).block();
4242
```
4343

44-
## Start media streaming - Outbound call
44+
## Start media streaming - outbound call
4545
Your application will start receiving media streams once you create the call and provide ACS with the WebSocket information.
4646

4747
``` java

0 commit comments

Comments
 (0)