You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/communication-services/quickstarts/voice-video-calling/includes/raw-media/raw-media-access-javascript.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,13 +12,13 @@ ms.subservice: calling
12
12
ms.custom: mode-other
13
13
---
14
14
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.
> 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.
22
22
23
23
## Accessing Raw audio
24
24
Accessing Raw audio media gives access to the incoming call audio stream and the ability to send custom outgoing audio stream during a call.
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.
114
114
115
115
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.
116
116
@@ -119,7 +119,7 @@ Proccessed Raw outgoing video frames can be sent as an outgoing video of the sen
119
119
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.
120
120
The processed outgoing video can then be sent as sender video stream.
121
121
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.
0 commit comments