clwu / php-read-mp4info
detect the rotate/width/height ... of MP4 video
Installs: 7 036
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 1
Open Issues: 1
Requires
- php: >=5.5.0
This package is auto-updated.
Last update: 2025-01-12 20:05:45 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) }