Skip to content

Commit df750de

Browse files
committed
revamp mediaconvert
1 parent 0efbe7e commit df750de

File tree

1 file changed

+15
-16
lines changed

1 file changed

+15
-16
lines changed

src/content/docs/aws/services/elementalmediaconvert.md

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: "Elemental MediaConvert"
3-
linkTitle: "Elemental MediaConvert"
43
description: Get started with Elemental MediaConvert on LocalStack
54
tags: ["Ultimate"]
65
---
@@ -11,11 +10,11 @@ Elemental MediaConvert is a file-based video transcoding service with broadcast-
1110
It enables you to easily create high-quality video streams for broadcast and multiscreen delivery.
1211

1312
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.
1514

16-
{{< callout "note">}}
15+
:::note
1716
Elemental MediaConvert is in a preview state.
18-
{{< /callout >}}
17+
:::
1918

2019
## Getting started
2120

@@ -98,9 +97,9 @@ Create a new file named `job.json` on your local directory:
9897
You can create a MediaConvert job using the [`CreateJob`](https://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/CreateJob) API.
9998
Execute the following command to create a job using a `job.json` file:
10099

101-
{{< command >}}
102-
$ awslocal mediaconvert create-job --cli-input-json file://job.json
103-
{{< /command >}}
100+
```bash
101+
awslocal mediaconvert create-job --cli-input-json file://job.json
102+
```
104103

105104
The following output would be retrieved:
106105

@@ -148,20 +147,20 @@ The following output would be retrieved:
148147
You can list all MediaConvert jobs using the [`ListJobs`](https://docs.aws.amazon.com/mediaconvert/latest/apireference/jobs.html#jobsget) API.
149148
Execute the following command to list all jobs:
150149

151-
{{< command >}}
152-
$ awslocal mediaconvert list-jobs
153-
{{< /command >}}
150+
```bash
151+
awslocal mediaconvert list-jobs
152+
```
154153

155154
### Create a queue
156155

157156
You can create a MediaConvert queue using the [`CreateQueue`](https://docs.aws.amazon.com/mediaconvert/latest/apireference/queues.html#queuespost) API.
158157
Execute the following command to create a queue named `MyQueue`:
159158

160-
{{< command >}}
161-
$ awslocal mediaconvert create-queue
159+
```bash
160+
awslocal mediaconvert create-queue
162161
--name MyQueue
163162
--description "High priority queue for video encoding"
164-
{{< /command >}}
163+
```
165164

166165
The following output would be retrieved:
167166

@@ -187,9 +186,9 @@ The following output would be retrieved:
187186
You can list all MediaConvert queues using the [`ListQueues`](https://docs.aws.amazon.com/mediaconvert/latest/apireference/queues.html#queuesget) API.
188187
Execute the following command to list all queues:
189188

190-
{{< command >}}
191-
$ awslocal mediaconvert list-queues
192-
{{< /command >}}
189+
```bash
190+
awslocal mediaconvert list-queues
191+
```
193192

194193
## Current Limitations
195194

0 commit comments

Comments
 (0)