Skip to content

Commit 8d78941

Browse files
authored
Update raw-media-access-javascript.md
1 parent bd3189a commit 8d78941

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/communication-services/quickstarts/voice-video-calling/includes/raw-media/raw-media-access-javascript.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ ms.subservice: calling
1212
ms.custom: mode-other
1313
---
1414

15-
As a developer you can access the raw media for incoming and outgoing audio and video media content during a call. Access to ACS client side Raw audio and video enables developers an almost unlimited array of abilty to view and edit audio and video content that happens within the ACS caling SDK. In this quickstart, you'll learn how to implement raw media access using the Azure Communication Services Calling SDK for WebJS.
15+
As a developer you can access the raw media for incoming and outgoing audio and video media content during a call. Access to ACS client side Raw audio and video enables developers an almost unlimited array of ability to view and edit audio and video content that happens within the ACS caling SDK. In this quickstart, you'll learn how to implement raw media access using the Azure Communication Services calling SDK for WebJS.
1616

1717
## Prerequisites
1818
[!INCLUDE [Public Preview](../../../../includes/public-preview-include-document.md)]
1919

2020
>[!IMPORTANT]
21-
> The the quick start examples here are available starting on the public preview version [1.9.1-beta.1](https://www.npmjs.com/package/@azure/communication-calling/v/1.9.1-beta.1) of the Calling Web SDK. Make sure to use that version when trying the instructions below.
21+
> The the quick start examples here are available starting on the public preview version [1.9.1-beta.1](https://www.npmjs.com/package/@azure/communication-calling/v/1.9.1-beta.1) of the Calling Web SDK. Make sure to use that version when trying this quickstart.
2222
2323
## Accessing Raw audio
2424
Accessing Raw audio media gives access to the incoming call audio stream and the ability to send custom outgoing audio stream during a call.
@@ -110,7 +110,7 @@ call.on("stateChanged", callStateChangedHandler);
110110
```
111111

112112
## Accessing Raw video
113-
Raw video media gives you the instance of MediaStream object (See JavaScript documentation for further refrence). Raw video media gives access specifically to incoming and outgoing call MediaStream object. For Raw Video, developers can use the incoming and outgoing raw MediaStream to apply filters by using Machine Learning to process frames of the video.
113+
Raw video media gives you the instance of MediaStream object (See JavaScript documentation for further reference). Raw video media gives access specifically to incoming and outgoing call MediaStream object. For Raw Video, developers can use the incoming and outgoing raw MediaStream to apply filters by using Machine Learning to process frames of the video.
114114

115115
Proccessed Raw outgoing video frames can be sent as an outgoing video of the sender. Proccessed Raw incoming video frames can be rendered on reciever side.
116116

@@ -119,7 +119,7 @@ Proccessed Raw outgoing video frames can be sent as an outgoing video of the sen
119119
Developers can access the raw outgoing call video stream. Developers have access to MediaStream of the outgoing raw video stream on which they can process frames using Machine Learning and apply filters.
120120
The processed outgoing video can then be sent as sender video stream.
121121

122-
In a given example below user is sent canvas data as outgoing video.
122+
In this example a user is sent canvas data as outgoing video.
123123

124124
```js
125125
const createVideoMediaStreamToSend = () => {

0 commit comments

Comments
 (0)