Skip to content

Commit 8b9bcc4

Browse files
author
Minnie Liu
committed
Addressing editor comments
1 parent a031b12 commit 8b9bcc4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/communication-services/quickstarts/media-composition/get-started-media-comp.md renamed to articles/communication-services/quickstarts/media-composition/get-started-media-composition.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Quickstart - Create and manage a media composition
2+
title: Azure Communication Services Quickstart - Create and manage a media composition
33
titleSuffix: An Azure Communication Services quickstart
44
description: In this quickstart, you'll learn how to create a media composition within your Azure Communication Services resource.
55
services: azure-communication-services
@@ -81,7 +81,7 @@ var mediaCompositionClient = new MediaCompositionClient(connectionString);
8181

8282
## Create a media composition
8383

84-
Create a new media composition by defining the `inputs`, `layout`, `outputs`, as well as a user-friendly `mediaCompositionId`. For more details on how to define the values, refer to [this page](./define-media-composition.md). These values are passed into the `CreateAsync` function exposed on the client. The code snippet below shows and example of defining a simple two by two grid layout:
84+
Create a new media composition by defining the `inputs`, `layout`, `outputs`, and a user-friendly `mediaCompositionId`. For more information on how to define the values, see [this page](./define-media-composition.md). These values are passed into the `CreateAsync` function exposed on the client. The code snippet below shows and example of defining a simple two by two grid layout:
8585

8686
```csharp
8787
var layout = new GridLayout(
@@ -138,7 +138,7 @@ var mediaCompositionId = "twoByTwoGridLayout"
138138
var response = await mediaCompositionClient.CreateAsync(mediaCompositionId, layout, inputs, outputs);
139139
```
140140

141-
You can use the `mediaCompositionId` to view or update the properties of a media composition object. Therefore, its is important to keep track of and persist the `mediaCompositionId` in your storage medium of choice.
141+
You can use the `mediaCompositionId` to view or update the properties of a media composition object. Therefore, it is important to keep track of and persist the `mediaCompositionId` in your storage medium of choice.
142142

143143
## Get properties of an existing media composition
144144

@@ -150,11 +150,11 @@ var gridMediaComposition = await mediaCompositionClient.GetAsync(mediaCompositio
150150

151151
## Updates
152152

153-
Note that for private preview, updating the `layout` of a media composition can happen on-the-fly as the media composition is running. However, `input` updates while the media composition is running is not supported. The media composition will need to be stopped and restarted before any changes to the inputs are applied.
153+
Updating the `layout` of a media composition can happen on-the-fly as the media composition is running. However, `input` updates while the media composition is running are not supported. The media composition will need to be stopped and restarted before any changes to the inputs are applied.
154154

155155
### Update layout
156156

157-
Updating the `layout` can be issued by passing in the new `layout` object as well as the `mediaCompositionId`. For example, we can update the grid layout to an auto-grid layout following the snippet below:
157+
Updating the `layout` can be issued by passing in the new `layout` object and the `mediaCompositionId`. For example, we can update the grid layout to an auto-grid layout following the snippet below:
158158

159159
```csharp
160160
var layout = new AutoGridLayout(new List<string>() { "teamsMeeting" })
@@ -185,7 +185,7 @@ var inputsToUpsert = new Dictionary<string, MediaInput>()
185185
var response = await mediaCompositionClient.UpsertInputsAsync(mediaCompositionId, inputsToUpsert);
186186
```
187187

188-
You can also explictly remove inputs from the list.
188+
You can also explicitly remove inputs from the list.
189189
```csharp
190190
var inputIdsToRemove = new List<string>()
191191
{

0 commit comments

Comments
 (0)