Cloud Video Encoding/Transcoding Software as a Service
- Nodilex account
- Token API
- PHP
- This PHP class
https://www.nodilex.com/fr/doc/transcoding
See the examples/ directory for examples of the key client features.
<?php
require_once('class/php-nodilex-transcode.class.php');
$client = new Nodilex_Transcode('my_token_api');
$output = $client->jobs_create(array(
'url' => 'http://example.com/myvideo.mkv',
'extension' => 'm3u8',
'height' => 720,
'width' => 1280,
'bitrate' => 2400,
));
// Check the documentation to know all possible params