getid3下载地址
https://github.com/JamesHeinrich/getID3
只需要getid3文件夹
写法
// 路径根据自己实际情况修改
include_once(Yii::$app->basePath.'/getid3.php');
$getID3 = new \getID3();
$mp4info= $getID3->analyze($file['tmp_name']);
// 除了analyze还有其他的各种方法,可自己尝试
https://github.com/JamesHeinrich/getID3
只需要getid3文件夹
// 路径根据自己实际情况修改
include_once(Yii::$app->basePath.'/getid3.php');
$getID3 = new \getID3();
$mp4info= $getID3->analyze($file['tmp_name']);
// 除了analyze还有其他的各种方法,可自己尝试