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/media-composition/get-started-media-composition.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Quickstart - Create and manage a media composition
2
+
title: Azure Communication Services Quickstart - Create and manage a media composition
3
3
titleSuffix: An Azure Communication Services quickstart
4
4
description: In this quickstart, you'll learn how to create a media composition within your Azure Communication Services resource.
5
5
services: azure-communication-services
@@ -81,7 +81,7 @@ var mediaCompositionClient = new MediaCompositionClient(connectionString);
81
81
82
82
## Create a media composition
83
83
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:
85
85
86
86
```csharp
87
87
varlayout=newGridLayout(
@@ -138,7 +138,7 @@ var mediaCompositionId = "twoByTwoGridLayout"
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.
142
142
143
143
## Get properties of an existing media composition
144
144
@@ -150,11 +150,11 @@ var gridMediaComposition = await mediaCompositionClient.GetAsync(mediaCompositio
150
150
151
151
## Updates
152
152
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.
154
154
155
155
### Update layout
156
156
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:
0 commit comments