gpt4 book ai didi

php - 检查 php exec 的输出总是返回空数组

转载 作者:行者123 更新时间:2023-12-02 17:51:12 27 4
gpt4 key购买 nike

我正在转换一些电影并希望确保转换过程没有错误:

exec("ffmpeg -i ".$orgVideoFile." -vcodec libx264 -crf 21 -acodec aac -ac 2 -ab 192000 -strict experimental -vpre hq -vpre veryfast -refs 3 -threads 4 -s 320x240 ".$newVideoFile, $output);
echo "Output:";
var_dump($output);

但是当检查 $output 时它总是空的:

Output:array(0) { } 

我如何检查以确保一切正常?

最佳答案

使用 PHP 的 proc_open 函数,您将拥有更多的控制权。它允许您以非常可控的方式写入/读取标准输入/输出:

$tunnels=array(
0 => array('pipe','r'), // Process std input
1 => array('pipe','w'), // Process std output
2 => array('pipe','w') // Process std error
);

$io=array();
$resource=proc_open("command with parameters...etc",$tunnels,$io);

if(!is_resource($resource)) {
// Throw exception or something...
}

// Write to process standard input and close stream
fwrite($io[0],"Some data...");
fclose($io[0]);

// We are not interested in process standard output.. close it
fclose($io[1]);

// Get process std error
$errors=stream_get_contents($io[2]);
fclose($io[2]);

// Close process reousrce
$result=proc_close($resource);

if($result != 0) {
// There where errors. Grab the error string from $errors
}

关于php - 检查 php exec 的输出总是返回空数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7941356/

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