cecil/php-read-mp4info

检测MP4视频的旋转角度、宽度和高度。

3.0.0 2024-09-30 13:49 UTC

This package is auto-updated.

Last update: 2024-09-30 13:52:14 UTC


README

分支自 https://github.com/clwu88/php-read-mp4info

使用PHP分析MP4视频文件的格式,以返回旋转角度、宽度和高度。

安装

composer require cecil/php-read-mp4info

用法

<?php

var_dump(\Mp4\Info::get('video.mp4'));
array(3) {
    ["rotate"] => int(0)
    ["width"]  => int(960)
    ["height"] => int(544)
}