PHPackages                             ogogo/amazon-et - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. ogogo/amazon-et

ActiveLibrary[HTTP &amp; Networking](/categories/http)

ogogo/amazon-et
===============

Amazon ET client for PHP

017PHP

Since Mar 1Pushed 11y ago1 watchersCompare

[ Source](https://github.com/Ogogo/amazon-et)[ Packagist](https://packagist.org/packages/ogogo/amazon-et)[ RSS](/packages/ogogo-amazon-et/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)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

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/9c62fc26fa69398342e0c7b1e930ce9ef511d6ef65eb8a2543abcbb21b29b378?d=identicon)[ogogo](/maintainers/ogogo)

---

Top Contributors

[![Ogogo](https://avatars.githubusercontent.com/u/5282057?v=4)](https://github.com/Ogogo "Ogogo (3 commits)")

### Embed Badge

![Health badge](/badges/ogogo-amazon-et/health.svg)

```
[![Health](https://phpackages.com/badges/ogogo-amazon-et/health.svg)](https://phpackages.com/packages/ogogo-amazon-et)
```

###  Alternatives

[friendsofsymfony/rest-bundle

This Bundle provides various tools to rapidly develop RESTful API's with Symfony

2.8k73.3M319](/packages/friendsofsymfony-rest-bundle)[php-http/discovery

Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations

1.3k309.5M1.2k](/packages/php-http-discovery)[pusher/pusher-php-server

Library for interacting with the Pusher REST API

1.5k94.8M293](/packages/pusher-pusher-php-server)[react/http

Event-driven, streaming HTTP client and server implementation for ReactPHP

78026.4M414](/packages/react-http)[php-http/curl-client

PSR-18 and HTTPlug Async client with cURL

48347.0M384](/packages/php-http-curl-client)[smi2/phpclickhouse

PHP ClickHouse Client

84310.1M71](/packages/smi2-phpclickhouse)

PHPackages © 2026

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