gpt4 book ai didi

php - FFMPEG 查找 MOV 视频是否为 h.264

转载 作者:行者123 更新时间:2023-12-04 23:09:38 27 4
gpt4 key购买 nike

我们如何在 PHP 中找出 MOV 或 MP4 视频是否使用 h.264 编码。我安装了 mencoder 和 FFMPEG。

最佳答案

<?php
exec( "ffmpeg -i {$strFilePath}", $return, $status );
if( $status == 0 ) {
// I do ot have ffmpeg installed on this machine so I can't write your check
// But a simple str_pos() will tell you if the h264 codec string is there.
$isH264 = str_pos($return, /*the codec string here*/ ) !== false;
}
?>

关于php - FFMPEG 查找 MOV 视频是否为 h.264,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6259735/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com