


Another way to get the total length of video in php_PHP tutorial
At that time, the video length was obtained by using a common method on the Internet to obtain the length of flv video files. However, this method was only supported for flv videos, and the values obtained for videos in other formats were very poor.
Here is a method: use I originally thought about using the ffmpeg return value Duration method, but there was no solution. Now it is possible. Since ffmpeg supports many video formats, this method has certain versatility.
linux command for ffmpeg to get the Duration of video duration:
ffmpeg -i test.flv 2>&1 | grep 'Duration' | cut -d ' ' -f 4 | sed s/,//
Duration can be obtained; see the picture below
Command analysis:
grep command: Match strings that meet the conditions in the search file, here look for the Duration field
cut: Use space as the separator to query the fourth element. cut is a good cutting command
A few examples of cut are attached below:
#ffmpeg -i test.flv
Enter the following information:
①Get creationdate: File creation time
ffmpeg -i test.flv 2>&1 | grep 'creationdate' | cut -d ' ' -f 5-
Explanation: Cut is a text interception command: use spaces as separators to intercept the fields after the 5th digit,
If you want to intercept: the 5th element and the 8th element, you should write like this:
ffmpeg -i test.flv 2>&1 | grep 'creationdate' | cut -d ' ' -f 5,8
②Get video size
Use cut to intercept the tenth element with a space as the delimiter, which is also the video size
ffmpeg -i test.flv 2>&1 | grep 'Video' | cut -d ' ' -f 10 | sed s/,//
sed command: sed ‘s/string to be replaced/new string/g’
For example: sed s/,//: means: replace the ',' symbol with a blank character
The following is the code to obtain the video thumbnail and the total length of the video:
/*
* Get the thumbnail and video length of the video file
*Requires ffmpeg Support
* @author PHP Huaibei
* @date 2011-09-14
* @copyright PHP Huaibei
*/
//Get the total length and creation time of the video file
function getTime($file){
$vtime = exec("ffmpeg -i ".$file." 2>&1 | grep 'Duration' | cut -d ' ' -f 4 | sed s/,// ");//Total length
$ctime = date("Y-m-d H:i:s",filectime($file));//Creation time
//$duration = explode(":",$ time);
// $duration_in_seconds = $duration[0]*3600 + $duration[1]*60+ round($duration[2]);//Convert to seconds
return array('vtime' =>$vtime,
'ctime'=>$ctime
);
}
//Get the thumbnail of the video file
function getVideoCover($file,$time) {
if(empty($time))$time = '1';//The first frame of the first second is captured by default
$strlen = strlen($file);
$videoCover = substr($file ,0,$strlen-4);
$videoCoverName = $videoCover.'.jpg';//Thumbnail naming
exec("ffmpeg -i ".$file." -y -f mjpeg -ss ".$time." -t 0.001 -s 320x240 ".$videoCoverName."",$out,$status);
if($status == 0)return $videoCoverName;
elseif ($status = = 1)return FALSE;
}
//Call method
$duration = getTime('/usr/local/apache/htdocs/test.flv');
echo $duration['vtime '].'
';//Total length
echo $duration['ctime'].'
';//Creation time
$videoCoverName = getVideoCover(' /usr/local/apache/htdocs/test.flv', 6);
echo $videoCoverName;//Get the thumbnail name
?>
Test effect:
The video length is: 55 seconds 43
Video creation time; 2011-9-13
Video thumbnail: test.jpg
-----------------------------The test is completely ok
Additional: If you want to get the size of the video file, you can use:
filesize()
Thefilesize() function is used to obtain the file size. The default unit is: bytes. It returns the number of bytes of the file size successfully, otherwise it returns FALSE.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Validator can be created by adding the following two lines in the controller.
