ffmpeg_video_length / ffmpeg_get_video_length
获取视频长度,获取视频时长。
v1.0.0
2020-03-27 05:04 UTC
Requires
- php: >=5.5.9
This package is auto-updated.
Last update: 2024-10-27 14:51:43 UTC
README
视频长度
前提要安装FFMPEG,windows版本Unix版本
文件地址:支持网络地址http://和本地绝对地址
$ffmpeg_path 必须绝对地址
$ffmpeg_path = 'D:\phpStudy2019\PHPTutorial\WWW\www.zhizhenfinance.com\public\static\admin\ffmpeg\bin\ffmpeg -i "%s" 2>&1';
$ffmpegGetVideoLength = new ffmpegGetVideoLength();
$file= '文件地址';
$length_time = $ffmpegGetVideoLength->getLength($ffmpeg_path,$file);
echo $length_time;