a4m/zencoder

A laravel wrapper around the zencoder API.

1.3.0 2014-07-26 04:43 UTC

This package is not auto-updated.

Last update: 2019-03-18 03:27:34 UTC


README

A laravel wrapper around the Zencoder API (Current version: v2.2.*)

Table of Contents

Installation

You can install the package for your Laravel 4 project through Composer.

Require the package in your composer.json.

"a4m/zencoder": "1.*"

Run composer to install or update the package.

$ composer update

Register the service provider in app/config/app.php.

'A4M\Zencoder\ZencoderServiceProvider',

Add the alias to the list of aliases in app/config/app.php.

'Zencoder' => 'A4M\Zencoder\ZencoderFacade',

Configuration

The packages provides you with some configuration options that are required.

To create the configuration file run this command in your command line app:

$ php artisan config:publish a4m/zencoder

The configuration file will be published here: app/config/packages/a4m/zencoder/config.php.

Usage

This is a simple wrapper around the official api, which means that everything you can do via documented on the official API can be done through `Zencoder::` with one exception; Laravel facades do not allow us direct access to the properties so we use accessor functions e.g.

Zencoder::accounts()->create($array);
Zencoder::jobs()->create($array);
Zencoder::jobs()->progress($job_id);
Zencoder::inputs()->details($input_id);
Zencoder::outputs()->details($output_id);
Zencoder::notifications()->parseIncoming();

We also have one more function Zencoder::instance() which simply returns the Zencoder instance allowing these properties to be set e.g.

Zencoder::instance()->jobs->create($array);
Zencoder::instance()->jobs = 'Something Else';

Fetcher

Zencoder comes with a nice little ruby gem that acts as a proxy between their server and your local dev environment which is useful if you are developing behind a firewall since Zencoder cannot access your server to send you the notifications. The issue here of course is that it requires ruby to be installed for it to work.

Being that we are developing with Laravel we might as well leverage the power of PHP so to the rescue comes php artisan zencoder:notifications. Which is a php port of the ruby gem. The port includes all the options that the ruby gem does which can be seen using php artisan zencoder:notifications --help or the detailed documentation via php artisan zencoder:notifications --docs.

For the command to work you are required to setup the receivingUrl in the package configuration file along with the above settings.

Package provided by Advantage4me™ for the OSS community.