Releases: Qencode-Corp/qencode-api-php-client
v1.13
v1.12
fix for getting status
v1.09
Fix for fetching Metadata
Working with video metadata (fix for PHP 5)
v1.08 Metadata: fix for PHP5
Working with video metadata (fix for PHP 5)
v1.07 updated version in readme
Working with video metadata
Easily get and parse video metadata:
$video_info = $q->getMetadata($video_url);
list($width, $height) = Metadata::get_video_dimensions($video_info);
$bitrate = Metadata::get_bitrate($video_info);
$framerate = Metadata::get_framerate($video_info);
$duration = Metadata::get_duration($video_info);
Working with video metadata
Easily get and parse video metadata:
$video_info = $q->getMetadata($video_url);
list($width, $height) = Metadata::get_video_dimensions($video_info);
$bitrate = Metadata::get_bitrate($video_info);
$framerate = Metadata::get_framerate($video_info);
$duration = Metadata::get_duration($video_info);
v1.04: Merge pull request #2 from ToothpickFactory/patch-1
Update TranscodingTask.php
Input query as JSON for custom jobs
See examples/start_encode2_json.php
Stitching support
Added stitching support and examples:
$task->AddStitchVideoItem($video1_url);
$videoItem = $task->AddStitchVideoItem($video2_url);
$videoItem->start_time = 30.0;
$videoItem->duration = 10.0;