Hello all, I dont know why I'm getting this error with calculating the duration for the video, everything works fine with uploading, file is going in my database and folder, the duration of my video is ok.
http://prnt.sc/e59i4f
here is my code:
// video duration
ob_start();
passthru("ffmpeg -i $tmp 2>&1");
$duration = ob_get_contents();
ob_end_clean();
$search='/Duration: (.*?)[.]/';
$duration=preg_match($search, $duration, $matches, PREG_OFFSET_CAPTURE);
//error is on this line botom
$duration = $matches[1][0];
//error is on this line botom
list($hours, $mins, $secs) = split('[:]', $duration);
//echo "Hours: ".$hours." Minutes: ".$mins." Seconds: ".$secs;
$duration=$hours.':'.$mins.':'.$secs;