PHP library for interacting with the Qencode API.
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';
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 2018 Qencode, Inc.