gpt4 book ai didi

php - PHP 中上传视频的持续时间

转载 作者:行者123 更新时间:2023-12-04 23:28:30 24 4
gpt4 key购买 nike

我需要知道我上传到页面的视频的持续时间。我为此编写了一个 PHP 脚本:

<?php

$command = "ffmpeg -i video.mp4 2>&1 | grep Duration | awk '{print $2}' | tr -d ,; ";
$cm = shell_exec($command) ;
echo "$cm";

?>

当我通过终端执行该程序时,它会显示持续时间,但在 PHP 页面中调用它时不会给出输出。
请给我一个解决方案....

提前致谢。

最佳答案

函数 shell_exec 以字符串形式返回所有输出。 exec 只返回最后一行。

试试这个

<?php

$command = "ffmpeg -i video.mp4 2>&1 | grep Duration | awk '{print $2}' | tr -d ,; ";
echo exec($command) ;

?>

关于php - PHP 中上传视频的持续时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31401437/

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