gpt4 book ai didi

php - 从 cmd 行程序 (rtmpdump.exe) 捕获 PHP exec() 输出的替代方法

转载 作者:行者123 更新时间:2023-12-04 21:53:54 25 4
gpt4 key购买 nike

我过去曾多次使用 exec() 函数从命令行可执行文件中捕获信息,并打算使用 RTMPDump.exe 再次执行此操作。 PHP 代码如下,可与我过去使用过的任何其他 cmd 行示例一起使用,但在这种情况下,$output 不会产生任何结果:

    $cmd = 'c:\rtmpdump\rtmpdump -r "rtmp://fms.domain.com/live/live_800"';
exec($cmd, $output);
foreach ($output as $item){
// do something with this $item
}

我已经通过将 Windows 命令行放入 .bat 文件并运行它来尝试它,其中 ase $output 然后仅包含 bat 文件中回显的内容,但不包含下面显示的输出,这就是当我从命令行手动运行命令时的结果。

C:\rtmpdump>rtmpdump -r "rtmp://fms.domain.com/live/live_800"
RTMPDump v2.3
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
INFO: Connected...
ERROR: rtmp server sent error
Starting Live Stream
For duration: 2.000 sec
INFO: Metadata:
INFO: author
INFO: copyright
INFO: description
INFO: keywords
INFO: rating
INFO: title
INFO: presetname Custom
INFO: creationdate Tue May 08 03:00:23 2012
INFO: videodevice Osprey-440 Video Device 1B
INFO: framerate 25.00
INFO: width 480.00
INFO: height 360.00
INFO: videocodecid avc1
INFO: videodatarate 800.00
INFO: avclevel 30.00
INFO: avcprofile 66.00
INFO: videokeyframe_frequency10.00
INFO: audiodevice Osprey-440 Audio Device 1B
INFO: audiosamplerate 22050.00
INFO: audiochannels 1.00
INFO: audioinputvolume 75.00
INFO: audiocodecid mp4a
INFO: audiodatarate 48.00
#######
Download complete

C:\rtmpdump>rtmpdump

程序确实运行了,这不是问题,有一个显示视频数据转储的输出文件,所以可执行文件的语法不是问题 - 问题是是否有任何其他方法可以拦截 rtmpdump.exe输出到命令窗口,不是通过 exec() 从 PHP 运行它捕获的。

如果重要的话,那就是我有兴趣使用的“INFO:...”。我正在尝试确定实时视频流是否正在流式传输。服务器正在运行,但我需要知道特定流 (live_800) 是否正在流式传输。

最佳答案

感谢 JohnF 让我走上了正确的轨道,如果其他新手需要完成这个,下面是我使用 proc_open 完成它的方法:

$descriptorspec = array(
0 => array("pipe", "r"), // stdin is a pipe that the child will read from
1 => array("pipe", "w"), // stdout is a pipe that the child will write to
2 => array("pipe", "w") // stderr is a pipe that the child will write to
);
$cmd = c:\rtmpdump\rtmpdump -r "rtmp://fms.domain.com/live/live_800 -B 1 -m 3";
$process = proc_open($cmd, $descriptorspec, $pipes);
if (is_resource($process)) {
$stdin = stream_get_contents($pipes[0]);
$stdout = stream_get_contents($pipes[1]);
$stderr = stream_get_contents($pipes[2]);
fclose($pipes[0]); fclose($pipes[1]); fclose($pipes[2]);
// It is important that you close any pipes before calling proc_close in order to avoid a deadlock
$return_value = proc_close($process);
}

关于php - 从 cmd 行程序 (rtmpdump.exe) 捕获 PHP exec() 输出的替代方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10508676/

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