Skip to content

Commit f9e8aeb

Browse files
committed
revamp elastictranscoder
1 parent 6ee29f2 commit f9e8aeb

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

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

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: "Elastic Transcoder"
3-
linkTitle: "Elastic Transcoder"
43
description: Get started with Elastic Transcoder on LocalStack
54
tags: ["Base"]
65
---
@@ -12,7 +11,7 @@ Elastic Transcoder manages the underlying resources, ensuring high availability
1211
It also supports a wide range of input and output formats, enabling users to efficiently process and deliver video content at scale.
1312

1413
LocalStack allows you to mock the Elastic Transcoder APIs in your local environment.
15-
The supported APIs are available on our [API coverage page]({{< ref "coverage_elastictranscoder" >}}), which provides information on the extent of Elastic Transcoder's integration with LocalStack.
14+
The supported APIs are available on our [API coverage page](), which provides information on the extent of Elastic Transcoder's integration with LocalStack.
1615

1716
## Getting started
1817

@@ -26,23 +25,23 @@ We will demonstrate how to create an Elastic Transcoder pipeline, read the pipel
2625
You can create S3 buckets using the [`mb`](https://docs.aws.amazon.com/cli/latest/reference/s3/mb.html) API.
2726
Execute the following command to create two buckets named `elasticbucket` and `outputbucket`:
2827

29-
{{< command >}}
30-
$ awslocal s3 mb s3://elasticbucket
31-
$ awslocal s3 mb s3://outputbucket
32-
{{< /command >}}
28+
```bash
29+
awslocal s3 mb s3://elasticbucket
30+
awslocal s3 mb s3://outputbucket
31+
```
3332

3433
### Create an Elastic Transcoder pipeline
3534

3635
You can create an Elastic Transcoder pipeline using the [`CreatePipeline`](https://docs.aws.amazon.com/elastictranscoder/latest/developerguide/create-pipeline.html) API.
3736
Execute the following command to create a pipeline named `test-pipeline`:
3837

39-
{{< command >}}
40-
$ awslocal elastictranscoder create-pipeline \
38+
```bash
39+
awslocal elastictranscoder create-pipeline \
4140
--name Default \
4241
--input-bucket elasticbucket \
4342
--output-bucket outputbucket \
4443
--role arn:aws:iam::000000000000:role/Elastic_Transcoder_Default_Role
45-
{{< /command >}}
44+
```
4645

4746
The following output would be retrieved:
4847

@@ -80,9 +79,9 @@ The following output would be retrieved:
8079
You can list all pipelines using the [`ListPipelines`](https://docs.aws.amazon.com/elastictranscoder/latest/developerguide/list-pipelines.html) API.
8180
Execute the following command to list all pipelines:
8281

83-
{{< command >}}
84-
$ awslocal elastictranscoder list-pipelines
85-
{{< /command >}}
82+
```bash
83+
awslocal elastictranscoder list-pipelines
84+
```
8685

8786
The following output would be retrieved:
8887

@@ -121,9 +120,9 @@ The following output would be retrieved:
121120
You can read a pipeline using the [`ReadPipeline`](https://docs.aws.amazon.com/elastictranscoder/latest/developerguide/read-pipeline.html) API.
122121
Execute the following command to read the pipeline with the ID `0998507242379-vltecz`:
123122

124-
{{< command >}}
125-
$ awslocal elastictranscoder read-pipeline --id 0998507242379-vltecz
126-
{{< /command >}}
123+
```bash
124+
awslocal elastictranscoder read-pipeline --id 0998507242379-vltecz
125+
```
127126

128127
The following output would be retrieved:
129128

0 commit comments

Comments
 (0)