1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
$mpegConf = [ 'ffmpeg.binaries' => env('ffmpeg.ffmpeg'), 'ffprobe.binaries' => env('ffmpeg.ffprobe'), 'timeout' => 3600, 'ffmpeg.threads' => 12 ]; $ffprobe = FFProbe::create($mpegConf); $videoInfo = $ffprobe->format($remotefilename)->all();
$size = $ffprobe->format($remotefilename)->get('size');
$duration = $ffprobe->format($remotefilename)->get('duration');
Array ( [filename] => /Desktop/1618363630035895.mp4 [nb_streams] => 2 [nb_programs] => 0 [format_name] => mov,mp4,m4a,3gp,3g2,mj2 [format_long_name] => QuickTime / MOV [start_time] => 0.000000 [duration] => 15.000000 [size] => 2018388 [bit_rate] => 1076473 [probe_score] => 100 [tags] => Array ( [major_brand] => mp42 [minor_version] => 1 [compatible_brands] => isommp41mp42 [creation_time] => 2021-04-14T01:27:05.000000Z [copyright] => [copyright-eng] => )
)
|