Fix for fetching 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);
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);
See examples/start_encode2_json.php
Added stitching support and examples:
$task->AddStitchVideoItem($video1_url); $videoItem = $task->AddStitchVideoItem($video2_url); $videoItem->start_time = 30.0; $videoItem->duration = 10.0;
Composer.json updated
How can I help you explore Laravel packages today?