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-comp.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ Get started with Azure Communication Services by using the Communication Service
37
37
38
38
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
39
39
- The latest version of [.NET Core SDK](https://dotnet.microsoft.com/download/dotnet-core) for your operating system.
40
-
- An active Communication Services resource and connection string. [Create a Communication Services resource](../../create-communication-resource.md).
40
+
- An active Communication Services resource and connection string. [Create a Communication Services resource](../create-communication-resource.md).
41
41
42
42
### Prerequisite check
43
43
@@ -87,7 +87,7 @@ To set up an environment for using media composition, take the steps in the foll
87
87
88
88
Open **Program.cs** in a text editor and replace the body of the `Main` method with code to initialize a `MediaCompositionClient` with your connection string. The `MediaCompositionClient` will be used to create and manage media composition objects.
89
89
90
-
You can find your Communication Services resource connection string in the Azure portal. For more information on connection strings, see [this page](../../create-communication-resource.md#access-your-connection-strings-and-service-endpoints).
90
+
You can find your Communication Services resource connection string in the Azure portal. For more information on connection strings, see [this page](../create-communication-resource.md#access-your-connection-strings-and-service-endpoints).
91
91
92
92
93
93
```csharp
@@ -98,7 +98,7 @@ MediaCompositionClient mediaCompositionClient = new MediaCompositionClient(conne
98
98
99
99
## Create a media composition
100
100
101
-
Create a new media composition by defining the `inputs`, `layout`, `outputs`, as well as a user-friendly `id`. 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:
101
+
Create a new media composition by defining the `inputs`, `layout`, `outputs`, as well as a user-friendly `id`. 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:
0 commit comments