Skip to content

Commit b8f4de9

Browse files
Merge pull request #223229 from dbasantes/main
Updating Call Recording Quickstart
2 parents 8ae8269 + 365f1dc commit b8f4de9

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

articles/communication-services/quickstarts/voice-video-calling/includes/call-recording-samples/call-recording-csharp.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ ms.date: 10/14/2022
55
ms.topic: include
66
ms.custom: public_preview
77
---
8+
## Sample Code
9+
10+
You can download the sample app from [GitHub](https://github.com/Azure-Samples/communication-services-dotnet-quickstarts/tree/main/ServerRecording)
811

912
## Prerequisites
1013

@@ -141,7 +144,7 @@ Below is an example of the event schema.
141144
Use `DownloadStreamingAsync` API for downloading the recorded media.
142145

143146
```csharp
144-
var recordingDownloadUri = new Uri(downloadLocation);
147+
var recordingDownloadUri = new Uri(contentLocation);
145148
var response = await callAutomationClient.GetCallRecording().DownloadStreamingAsync(recordingDownloadUri);
146149
```
147150
The `downloadLocation` for the recording can be fetched from the `contentLocation` attribute of the `recordingChunk`. `DownloadStreamingAsync` method returns response of type `Response<Stream>`, which contains the downloaded content.

articles/communication-services/quickstarts/voice-video-calling/includes/call-recording-samples/call-recording-java.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ ms.topic: include
66
ms.custom: public_preview
77
---
88

9+
## Sample Code
10+
11+
You can download the sample app from [GitHub](https://github.com/Azure-Samples/communication-services-java-quickstarts/tree/main/ServerRecording)
12+
913
## Prerequisites
1014

1115
- You need an Azure account with an active subscription.

0 commit comments

Comments
 (0)