clwu/php-read-mp4info

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

Installs: 11 220

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 1

Open Issues: 1

pkg:composer/clwu/php-read-mp4info

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

This package is auto-updated.

Last update: 2025-10-12 22:06:12 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)
}