qencode / api-client
PHP library for interacting with Qencode API
Installs: 141 512
Dependents: 2
Suggesters: 0
Security: 0
Stars: 8
Watchers: 2
Forks: 3
Open Issues: 2
Requires
- php: >=5.4
README
PHP library for interacting with the Qencode API.
Installation
Get composer, run this in your project directory:
curl -sS https://getcomposer.org/installer | php
Create composer.json under the root of your project with the following instructions:
{ "require": { "qencode/api-client": "1.13.*" } }
Run composer:
php composer.phar install
Include vendor/autoload.php:
require 'vendor/autoload.php';
If you don't use composer, use autoload.php located in the root of the repo:
require_once __DIR__ . '/../autoload.php';
Usage
Instantiate Qencode API Client:
$q = new QencodeApiClient($apiKey);
Create a new job:
$task = $q->createTask(); $task->start($transcodingProfileId, $video_url);
Query an existing job:
$response = $task->getStatus();
Copyright
Copyright 2018 Qencode, Inc.