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/elastictranscoder.md
+14-15Lines changed: 14 additions & 15 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: "Elastic Transcoder"
3
-
linkTitle: "Elastic Transcoder"
4
3
description: Get started with Elastic Transcoder on LocalStack
5
4
tags: ["Base"]
6
5
---
@@ -12,7 +11,7 @@ Elastic Transcoder manages the underlying resources, ensuring high availability
12
11
It also supports a wide range of input and output formats, enabling users to efficiently process and deliver video content at scale.
13
12
14
13
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.
16
15
17
16
## Getting started
18
17
@@ -26,23 +25,23 @@ We will demonstrate how to create an Elastic Transcoder pipeline, read the pipel
26
25
You can create S3 buckets using the [`mb`](https://docs.aws.amazon.com/cli/latest/reference/s3/mb.html) API.
27
26
Execute the following command to create two buckets named `elasticbucket` and `outputbucket`:
28
27
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
+
```
33
32
34
33
### Create an Elastic Transcoder pipeline
35
34
36
35
You can create an Elastic Transcoder pipeline using the [`CreatePipeline`](https://docs.aws.amazon.com/elastictranscoder/latest/developerguide/create-pipeline.html) API.
37
36
Execute the following command to create a pipeline named `test-pipeline`:
0 commit comments