PHPackages                             wheredia/elastic-transcoder-aws - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. wheredia/elastic-transcoder-aws

ActiveLibrary

wheredia/elastic-transcoder-aws
===============================

Amazon Elastic Transcoder.

1.0.31(8y ago)1154MITPHPPHP &gt;=5.2

Since Apr 25Pushed 8y agoCompare

[ Source](https://github.com/w-heredia/aws-elastic-transcoder-php)[ Packagist](https://packagist.org/packages/wheredia/elastic-transcoder-aws)[ Docs](https://github.com/w-heredia/elastic-transcoder-php)[ RSS](/packages/wheredia-elastic-transcoder-aws/feed)WikiDiscussions master Synced 4d ago

READMEChangelog (2)DependenciesVersions (3)Used By (0)

Elastic Transcoder PHP Class
============================

[](#elastic-transcoder-php-class)

PHP class for interacting with Amazon Elastic Transcoder that does not require PEAR.

#### Usage

[](#usage)

Object-oriented method:

```
$et = new AWS_ET($awsAccessKey, $awsSecretKey, $awsRegion);
```

Statically:

```
AWS_ET::setAuth($awsAccessKey, $awsSecretKey, $awsRegion);
```

**Note:** us-east-1 is the default AWS region setting. The third parameter is optional for us-east-1 users.

#### Job Operations

[](#job-operations)

Creating a transcoding job:

```
$pipelineId = 'pipelineId';
$input = array('Key' => 'inputFile');
$output = array(
  'Key' => 'outputFile.mp4',
  'PresetId' => 'presetId'
 );

$result = AWS_ET::createJob($input, array($output), $pipelineId);

if (!$result) {
  echo AWS_ET::getErrorMsg();
} else {
  echo 'New job ID: ' . $result['Job']['Id'];
}
```

List jobs by pipeline:

```
AWS_ET::listJobsByPipeline( string $pipelineId [, boolean $ascending = true ] );
```

List jobs by status:

```
AWS_ET::listJobsByStatus( string $status );
```

Get job info:

```
AWS_ET::readJob( string $jobId );
```

Cancel a job:

```
AWS_ET::cancelJob( string $jobId );
```

#### Pipeline Operations

[](#pipeline-operations)

Create a new pipeline:

```
AWS_ET::createPipeline( string $name, string $inputBucket, string $outputBucket, string $role [, array $notifications ] );
```

Get a list pipelines:

```
AWS_ET::listPipelines();
```

Get info about a pipeline:

```
AWS_ET::readPipeline( string $pipelineId );
```

Update pipeline settings:

```
AWS_ET::updatePipeline( string $pipelineId, array $updates );
```

Change the status of a pipeline (active/paused):

```
AWS_ET::updatePipelineStatus( string $pipelineId, string $status );
```

Update pipeline notification settings:

```
AWS_ET::updatePipelineNotifications( string $pipelineId [, array $notifications ] );
```

Delete a pipeline:

```
AWS_ET::deletePipeline( string $pipelineId );
```

Test the settings for a pipeline:

```
AWS_ET::testRole( string $inputBucket, string $outputBucket, string $role, array $topics );
```

#### Preset Operations

[](#preset-operations)

Create a preset:

```
AWS_ET::createPreset( array $options );
```

List all presets:

```
AWS_ET::listPresets();
```

Get info about a preset:

```
AWS_ET::readPreset( string $presetId );
```

Delete a preset:

```
AWS_ET::deletePreset( string $presetId );
```

#### Misc.

[](#misc)

Set AWS authentication credentials:

```
AWS_ET::setAuth( string $awsAccessKey, string $awsSecretKey );
```

Set AWS region:

```
AWS_ET::setRegion( string $region = 'us-east-1' );
```

Get HTTP status code of server response:

```
AWS_ET::getStatusCode();
```

Get server response:

```
AWS_ET::getResponse();
```

Get error message, if any:

```
AWS_ET::getErrorMsg();
```

**More Information:**
[Getting Started with Elastic Transcoder](http://docs.aws.amazon.com/elastictranscoder/latest/developerguide/getting-started.html)#### License

[](#license)

Released under the MIT license.

[![githalytics.com alpha](https://camo.githubusercontent.com/5dbcb4d68b79d8b9bc11438c9766872b28ef8ca119afbe7fdd63dd5fb43e02fa/68747470733a2f2f637275656c2d6361726c6f74612e7061676f6461626f782e636f6d2f3432396330373463663037646537626565336361366166393032636438313431 "githalytics.com")](http://githalytics.com/LPology/ElasticTranscoderPHP)

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 83.8% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

2942d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/54be708bf3ba86e82b829d1f89c72bd9e2d68190eb4e75dfcd16269f39215ccf?d=identicon)[w-heredia](/maintainers/w-heredia)

---

Top Contributors

[![sdturner02](https://avatars.githubusercontent.com/u/1897304?v=4)](https://github.com/sdturner02 "sdturner02 (57 commits)")[![w-heredia](https://avatars.githubusercontent.com/u/38737819?v=4)](https://github.com/w-heredia "w-heredia (6 commits)")[![LPology](https://avatars.githubusercontent.com/u/2237504?v=4)](https://github.com/LPology "LPology (3 commits)")[![fixedd](https://avatars.githubusercontent.com/u/13170?v=4)](https://github.com/fixedd "fixedd (1 commits)")[![shahin8r](https://avatars.githubusercontent.com/u/4785263?v=4)](https://github.com/shahin8r "shahin8r (1 commits)")

---

Tags

awsElastic Transcoder

### Embed Badge

![Health badge](/badges/wheredia-elastic-transcoder-aws/health.svg)

```
[![Health](https://phpackages.com/badges/wheredia-elastic-transcoder-aws/health.svg)](https://phpackages.com/packages/wheredia-elastic-transcoder-aws)
```

###  Alternatives

[league/flysystem

File storage abstraction for PHP

13.6k639.1M2.2k](/packages/league-flysystem)[aws/aws-sdk-php

AWS SDK for PHP - Use Amazon Web Services in your PHP project

6.3k511.3M2.2k](/packages/aws-aws-sdk-php)[league/flysystem-aws-s3-v3

AWS S3 filesystem adapter for Flysystem.

1.6k263.6M790](/packages/league-flysystem-aws-s3-v3)[bref/bref

Bref is a framework to write and deploy serverless PHP applications on AWS Lambda.

3.4k9.6M55](/packages/bref-bref)[aws/aws-sdk-php-laravel

A simple Laravel 9/10/11/12/13 service provider for including the AWS SDK for PHP.

1.7k35.6M75](/packages/aws-aws-sdk-php-laravel)[aws/aws-crt-php

AWS Common Runtime for PHP

416300.1M4](/packages/aws-aws-crt-php)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
