获取编解码器的FFProbe

时间:2015-11-13 18:02:47

标签: php ffmpeg ffprobe

我尝试过使用FFProbe including this one获取视频编解码器的一系列不同示例,除了偶尔[/STREAM]之外,我无法获得任何输出

这就是我目前正在尝试的

$codec = exec("ffprobe -v error -show_entries -show_streams stream=codec_name {$input['filename']}");

也试过这个......

$codec = exec("ffprobe -v quiet -print_format json -show_format -show_streams {$input['filename']}");

我知道视频很好并且正在使用CLI,因为当我使用以下内容来获取持续时间时,我会得到预期的结果

$duration = exec("ffprobe {$input['filename']} -show_format 2>&1 | sed -n 's/duration=//p'");

有什么想法吗?

2 个答案:

答案 0 :(得分:3)

想出来。

$codec = exec("ffprobe -v error -select_streams v:0 -show_entries stream=codec_name -of default=noprint_wrappers=1:nokey=1 {$input['filename']}");

echo $codec;

产生

h264

答案 1 :(得分:1)

timgavin的一个很好的回答,谢谢!

我的需求意味着我需要一个稍微不同的应用程序,我使用了命令提示符:

set probe="<YOUR PATH>/ffmpeg/bin/ffprobe.exe"
%probe% -v error -select_streams v:0 -show_entries stream=codec_name -of default=noprint_wrappers=1:nokey=1 input.avi

在这种情况下返回:

mpeg4

不确定这是否足以满足我的要求。从我目前的研究来看,HTML5视频标签是文献记载很少的标准?

由于@llogan的评论和更多的研究,我决定将我在视频标签上找到的内容发布出来:

ffmpeg/bin/ffmpeg.exe" -i input.avi -b 1500k -vcodec libx264 "output.mp4"

ffmpeg/bin/ffmpeg.exe -i input.mov -vcodec h264 -acodec aac -strict -2 output.mp4

当然,

h264

视频编解码器是唯一受支持的.mp4 Mime文件类型的编解码器。该指南可能有用:https://trac.ffmpeg.org/wiki/Encode/H.264

据我所知,如果使用的浏览器是最新的,它应该支持这些视频Mime类型!

由于@llogan的建议,我们不再需要:

-strict -2

但使用:

-movflags +faststart

由于劳埃德(Lloyd)的帮助和研究,我现在拥有的是:

string ffmpeg = "Utils/ffmpeg/ffmpeg.exe";
string encode = "-y -i \"" + InputFile + "\" -movflags +faststart -vcodec libx264 -crf 22 -acodec aac -b:a 192k \"" + OutputFile + "\"";

其中:OutputFile是OutputFile.mp4

截至:2020年6月12日,这是HTML5视频代码的一种很好的ffmpeg编码。