用于确定mpeg-4文件编解码器的php代码

时间:2012-12-16 03:58:42

标签: php h.264 codec

我需要对.mp4文件运行检查以检查它们是否有h.264编解码器来创建php条件或者至少只是打印编解码器。是否有一些相当简单的代码将在html文件中运行?

1 个答案:

答案 0 :(得分:2)

使用:

这是他们的示例测试文件:

include "MP4Info.php";

print '<h1>MP4Info test script</h1>';
print '<p><small>'.__FILE__.' $Id: test.php 2 2009-06-11 14:12:31Z lacroix.tommy@gmail.com $</small></p>';
print '<hr />';

$dir = './TestFiles/';
$de = opendir($dir);
if ($de) {
    while (($file = readdir($de)) !== false) {
        $path = $dir.$file;
        if ((!is_file($path)) || (!is_readable($path)) || (strtolower(pathinfo($path,PATHINFO_EXTENSION) != 'f4v'))) continue;

        print '<h2>'.$file.'</h2>';
        print "<pre>";
        try {
            print_r(MP4Info::getInfo($path));
        } catch (MP4Info_Exception $e) {
            print 'Caught MP4Info_Exception with message '.$e->getMessage();
            throw ($e);
        } catch (Exception $e) {
            print 'Cauth Exception with message '.$e->getMessage();
            throw ($e);
        }
        print "</pre>";
        print '<hr/>';
    }
} else {
    print '<strong>Could not open directory "'.$dir.'".';
}

它确实支持查找视频是否具有h.264编码。