gpt4 book ai didi

php - 在 php 中使用 ffprobe 检索视频细节

转载 作者:行者123 更新时间:2023-12-04 23:16:56 26 4
gpt4 key购买 nike

我正在使用此命令在 ubuntu 终端中检索视频信息:

ffprobe -show_streams sample.mp4

此命令在终端中显示有关视频的所有信息,但是当我在 php 中使用此命令并使用 exec 函数检索结果时,返回
string(0) ""
{}

我如何在 php 中检索结果?

我的代码:
    public function information($ffmpeg,$file)
{
$info = exec("$ffmpeg -show_streams $file");
return $info;
}

最佳答案

我使用 exec 函数用三个参数运行我的命令,并用第二个参数返回值:

$info = exec("$ffmpeg -show_streams $file",$output,$result);
return $output;

关于php - 在 php 中使用 ffprobe 检索视频细节,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24751323/

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