FFMPEG найти, если MOV видео h.264 - PullRequest
0 голосов
/ 07 июня 2011

Как мы можем узнать в PHP, если видео MOV или MP4 кодируется с помощью h.264. У меня установлены оба mencoder и FFMPEG.

1 Ответ

1 голос
/ 07 июня 2011
<?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;
}
?>
...