PHPackages                             knik/elastic-transcoder - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. knik/elastic-transcoder

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

knik/elastic-transcoder
=======================

Amazon Elastic Transcoder.

1.0.2(9y ago)35532MITPHPPHP &gt;=5.2

Since Feb 7Pushed 9y agoCompare

[ Source](https://github.com/et-nik/elastic-transcoder-php)[ Packagist](https://packagist.org/packages/knik/elastic-transcoder)[ Docs](https://github.com/ET-NiK/ElasticTranscoder)[ RSS](/packages/knik-elastic-transcoder/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (1)DependenciesVersions (2)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 ElasticTranscoder($awsAccessKey, $awsSecretKey, $awsRegion);
```

Statically:

```
ElasticTranscoder::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 = ElasticTranscoder::createJob($input, array($output), $pipelineId);

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

List jobs by pipeline:

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

List jobs by status:

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

Get job info:

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

Cancel a job:

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

#### Pipeline Operations

[](#pipeline-operations)

Create a new pipeline:

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

Get a list pipelines:

```
ElasticTranscoder::listPipelines();
```

Get info about a pipeline:

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

Update pipeline settings:

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

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

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

Update pipeline notification settings:

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

Delete a pipeline:

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

Test the settings for a pipeline:

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

#### Preset Operations

[](#preset-operations)

Create a preset:

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

List all presets:

```
ElasticTranscoder::listPresets();
```

Get info about a preset:

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

Delete a preset:

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

#### Misc.

[](#misc)

Set AWS authentication credentials:

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

Set AWS region:

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

Get HTTP status code of server response:

```
ElasticTranscoder::getStatusCode();
```

Get server response:

```
ElasticTranscoder::getResponse();
```

Get error message, if any:

```
ElasticTranscoder::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

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

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

Unknown

Total

1

Last Release

3384d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/d7469ba20a83b18557bde2a09acd47b9b0ee91657f73b35789c5367fbe94dd19?d=identicon)[knik](/maintainers/knik)

---

Top Contributors

[![sdturner02](https://avatars.githubusercontent.com/u/1897304?v=4)](https://github.com/sdturner02 "sdturner02 (57 commits)")[![et-nik](https://avatars.githubusercontent.com/u/3670640?v=4)](https://github.com/et-nik "et-nik (3 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/knik-elastic-transcoder/health.svg)

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

###  Alternatives

[aws/aws-crt-php

AWS Common Runtime for PHP

416300.1M4](/packages/aws-aws-crt-php)[aws/aws-sdk-php-symfony

A Symfony bundle for v3 of the AWS SDK for PHP

36517.7M22](/packages/aws-aws-sdk-php-symfony)[tenancy/tenancy

Creating multi tenant saas from your Laravel app with ease

1.3k43.6k](/packages/tenancy-tenancy)[bref/symfony-bridge

Makes Symfony work on AWS Lambda with Bref

491.7M5](/packages/bref-symfony-bridge)[async-aws/async-aws-bundle

Configure all your AsyncAws services and enjoy the autowire greatness.

243.6M2](/packages/async-aws-async-aws-bundle)[ankurk91/laravel-ses-webhooks

Handle AWS SES webhooks in Laravel php framework

2534.2k](/packages/ankurk91-laravel-ses-webhooks)

PHPackages © 2026

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