【问题标题】:Get width and height of quicktime clip (.mov) with php?用php获取quicktime剪辑(.mov)的宽度和高度?
【发布时间】:2009-12-11 14:53:04
【问题描述】:

我需要用 php 获取 .mov 文件的宽度和高度。 我该怎么做?

【问题讨论】:

    标签: php quicktime .mov


    【解决方案1】:

    我过去曾使用 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'];
    ?>
    

    【讨论】:

    • 这也适用于.mp4 文件(已测试)和许多其他格式(未测试)。
    猜你喜欢
    • 1970-01-01
    • 2011-11-26
    • 2015-06-28
    • 2019-01-28
    • 2012-08-21
    • 2017-12-26
    • 1970-01-01
    • 2012-10-10
    • 2021-06-30
    相关资源
    最近更新 更多