如何在PHP中获取视频持续时间,维度和大小?

Cha*_*dan 41 php video duration ffmpeg

我想知道如何在PHP中获取上传的视频文件的持续时间,尺寸和大小.该文件可以是任何视频格式.

aen*_*rew 64

getID3支持视频格式.请参阅:http://getid3.sourceforge.net/

编辑:那么,在代码格式中,这就像:

include_once('pathto/getid3.php');
$getID3 = new getID3;
$file = $getID3->analyze($filename);
echo("Duration: ".$file['playtime_string'].
" / Dimensions: ".$file['video']['resolution_x']." wide by ".$file['video']['resolution_y']." tall".
" / Filesize: ".$file['filesize']." bytes<br />");
Run Code Online (Sandbox Code Playgroud)

注意:在此之前,您必须包含getID3类!见上面的链接.

编辑:如果您能够修改服务器上的PHP安装,为此目的的PHP扩展是ffmpeg-php.请参阅:http://ffmpeg-php.sourceforge.net/

  • 如果你正在使用作曲家:`{"require":{"james-heinrich/getid3":"> = 1.9.9"}}`然后运行`php composer.phar update`. (3认同)

F3L*_*X79 21

如果您的服务器上安装了FFMPEG(http://www.mysql-apache-php.com/ffmpeg-install.htm),则可以使用命令" -vstats " 获取视频的属性并解析一些正则表达式的结果 - 如下例所示.然后,您需要PHP函数filesize()来获取大小.

$ffmpeg_path = 'ffmpeg'; //or: /usr/bin/ffmpeg , or /usr/local/bin/ffmpeg - depends on your installation (type which ffmpeg into a console to find the install path)
$vid = 'PATH/TO/VIDEO'; //Replace here!

 if (file_exists($vid)) {

    $finfo = finfo_open(FILEINFO_MIME_TYPE);
    $mime_type = finfo_file($finfo, $vid); // check mime type
    finfo_close($finfo);

    if (preg_match('/video\/*/', $mime_type)) {

        $video_attributes = _get_video_attributes($vid, $ffmpeg_path);

        print_r('Codec: ' . $video_attributes['codec'] . '<br/>');

        print_r('Dimension: ' . $video_attributes['width'] . ' x ' . $video_attributes['height'] . ' <br/>');

        print_r('Duration: ' . $video_attributes['hours'] . ':' . $video_attributes['mins'] . ':'
                . $video_attributes['secs'] . '.' . $video_attributes['ms'] . '<br/>');

        print_r('Size:  ' . _human_filesize(filesize($vid)));

    } else {
        print_r('File is not a video.');
    }
} else {
    print_r('File does not exist.');
}

function _get_video_attributes($video, $ffmpeg) {

    $command = $ffmpeg . ' -i ' . $video . ' -vstats 2>&1';
    $output = shell_exec($command);

    $regex_sizes = "/Video: ([^,]*), ([^,]*), ([0-9]{1,4})x([0-9]{1,4})/"; // or : $regex_sizes = "/Video: ([^\r\n]*), ([^,]*), ([0-9]{1,4})x([0-9]{1,4})/"; (code from @1owk3y)
    if (preg_match($regex_sizes, $output, $regs)) {
        $codec = $regs [1] ? $regs [1] : null;
        $width = $regs [3] ? $regs [3] : null;
        $height = $regs [4] ? $regs [4] : null;
    }

    $regex_duration = "/Duration: ([0-9]{1,2}):([0-9]{1,2}):([0-9]{1,2}).([0-9]{1,2})/";
    if (preg_match($regex_duration, $output, $regs)) {
        $hours = $regs [1] ? $regs [1] : null;
        $mins = $regs [2] ? $regs [2] : null;
        $secs = $regs [3] ? $regs [3] : null;
        $ms = $regs [4] ? $regs [4] : null;
    }

    return array('codec' => $codec,
        'width' => $width,
        'height' => $height,
        'hours' => $hours,
        'mins' => $mins,
        'secs' => $secs,
        'ms' => $ms
    );
}

function _human_filesize($bytes, $decimals = 2) {
    $sz = 'BKMGTP';
    $factor = floor((strlen($bytes) - 1) / 3);
    return sprintf("%.{$decimals}f", $bytes / pow(1024, $factor)) . @$sz[$factor];
}
Run Code Online (Sandbox Code Playgroud)

  • 非常感谢!我发现提供的正则表达式不足,因为我的测试视频在编解码器部分有一个额外的逗号.也就是说,对于遇到同样问题的人来说,这是一个修复:`$ regex_sizes ="/ Video:([^\r \n]*),([^,]*),([0-9] {1,4 })x([0-9] {1,4})/";``,我的ffmpeg路径是:`/ usr/local/bin/ffmpeg`(键入`ffmpeg`进入控制台查找安装路径).这是一个Regexr示例:http://regexr.com/3fs8d (2认同)

Tim*_*ebl 6

如果您使用Wordpress,您可以使用wordpress build in function with video id wp_get_attachment_metadata($ videoID):

wp_get_attachment_metadata($videoID);
Run Code Online (Sandbox Code Playgroud)

帮了我很多忙.这就是为什么我发布它,虽然这个问题是在2011年提出的.