clwu/php-read-mp4info

detect the rotate/width/height ... of MP4 video

v2.0.0 2020-02-12 08:06 UTC

This package is auto-updated.

Last update: 2024-04-12 18:29:40 UTC


README

返回 iPhone 拍摄的 mp4 视频的 rotate

用 php 实现了分析 mp4 视频文件的格式,但目前只实现了返回视频的的旋转度数。

代码例子

手机旋转示例

composer.json

    "require": {
        "clwu/php-read-mp4info": "v2.0.0"
    }
<?php
require('vendor/autoload.php');
var_dump(\Clwu\Mp4::getInfo('/tmp/faae8ca03b6e6c06cf47dad6dde46830.mp4'));


array(3) {
  ["rotate"]=> int(0)
  ["width"]=> int(960)
  ["height"]=> int(544)
}