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: src/content/docs/aws/services/elementalmediaconvert.md
+15-16Lines changed: 15 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,5 @@
1
1
---
2
2
title: "Elemental MediaConvert"
3
-
linkTitle: "Elemental MediaConvert"
4
3
description: Get started with Elemental MediaConvert on LocalStack
5
4
tags: ["Ultimate"]
6
5
---
@@ -11,11 +10,11 @@ Elemental MediaConvert is a file-based video transcoding service with broadcast-
11
10
It enables you to easily create high-quality video streams for broadcast and multiscreen delivery.
12
11
13
12
LocalStack allows you to mock the MediaConvert APIs in your local environment.
14
-
The supported APIs are available on our [API coverage page]({{< ref "coverage_mediaconvert" >}}), which provides information on the extent of MediaConvert's integration with LocalStack.
13
+
The supported APIs are available on our [API coverage page](), which provides information on the extent of MediaConvert's integration with LocalStack.
15
14
16
-
{{< callout "note">}}
15
+
:::note
17
16
Elemental MediaConvert is in a preview state.
18
-
{{< /callout >}}
17
+
:::
19
18
20
19
## Getting started
21
20
@@ -98,9 +97,9 @@ Create a new file named `job.json` on your local directory:
98
97
You can create a MediaConvert job using the [`CreateJob`](https://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/CreateJob) API.
99
98
Execute the following command to create a job using a `job.json` file:
@@ -148,20 +147,20 @@ The following output would be retrieved:
148
147
You can list all MediaConvert jobs using the [`ListJobs`](https://docs.aws.amazon.com/mediaconvert/latest/apireference/jobs.html#jobsget) API.
149
148
Execute the following command to list all jobs:
150
149
151
-
{{< command >}}
152
-
$ awslocal mediaconvert list-jobs
153
-
{{< /command >}}
150
+
```bash
151
+
awslocal mediaconvert list-jobs
152
+
```
154
153
155
154
### Create a queue
156
155
157
156
You can create a MediaConvert queue using the [`CreateQueue`](https://docs.aws.amazon.com/mediaconvert/latest/apireference/queues.html#queuespost) API.
158
157
Execute the following command to create a queue named `MyQueue`:
159
158
160
-
{{< command >}}
161
-
$ awslocal mediaconvert create-queue
159
+
```bash
160
+
awslocal mediaconvert create-queue
162
161
--name MyQueue
163
162
--description "High priority queue for video encoding"
164
-
{{< /command >}}
163
+
```
165
164
166
165
The following output would be retrieved:
167
166
@@ -187,9 +186,9 @@ The following output would be retrieved:
187
186
You can list all MediaConvert queues using the [`ListQueues`](https://docs.aws.amazon.com/mediaconvert/latest/apireference/queues.html#queuesget) API.
0 commit comments