You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello @buggedcom , thank you for making these awesome things . i am trying to use phpvideotoolkit for extracting some screenshoots with an interval ( from zero to 1/5 of video , i want to take 5 screenshoots ) and here is my code :
$parser = new MediaParser();
$data = $parser->getFileInformation($videoURL);
$process = $video->extractFrames(null, new TimeCode($data['duration']->total_seconds/5), '15/'.$data['duration']->total_seconds)
->save(BASE.'/output/'.$videoName.'.%timecode.jpg', null, Media::OVERWRITE_EXISTING);
Hello @buggedcom , thank you for making these awesome things . i am trying to use phpvideotoolkit for extracting some screenshoots with an interval ( from zero to 1/5 of video , i want to take 5 screenshoots ) and here is my code :
$parser = new MediaParser();
$data = $parser->getFileInformation($videoURL);
$process = $video->extractFrames(null, new TimeCode($data['duration']->total_seconds/5), '15/'.$data['duration']->total_seconds)
->save(BASE.'/output/'.$videoName.'.%timecode.jpg', null, Media::OVERWRITE_EXISTING);
$output = $process->getOutput();
$output = array_values($output);
$paths = array();
foreach ($output as $obj)
{
array_push($paths, str_replace("/usr/share/nginx/html/","http://10.143.67.216/",$obj->getMediaPath()));
}
then when i execute the code , it works on some files and there are many files that wont work . !
here is the error :
https://notepad.cc/qedoma8
The text was updated successfully, but these errors were encountered: