我需要用 php 获取 .mov 文件的宽度和高度。我怎么做?
问问题
1772 次
1 回答
6
我过去曾使用 getid3 来实现这一点,您可以从http://www.getid3.org/获取它我不确定它的维护情况如何
你可以敲一些代码看起来类似于这个
<?php
include_once('getid3.php');
$getID3 = new getID3;
$file = './file.mov';
$file_analysis = $getID3->analyze($file);
echo 'Video Resolution = '.$file_analysis['video']['resolution_x'].' X '.$file_analysis['video']['resolution_y'];
?>
于 2009-12-11T15:21:00.203 回答