从 php 脚本执行 linux 命令
祝大家美好的一天。
我需要向脚本发送请求,然后执行一些命令(基本上我需要在单击链接时启动 ffmpeg)。
我尝试了这个:
exec("ffserver &");
exec("ffmpeg -i pipe.avi output.avi");
exec("mplayer -dumpstream someinput -dumpfile pipe.avi");
在这
shell_exec("ffserver &");
shell_exec("ffmpeg -i pipe.avi output.avi");
shell_exec("mplayer -dumpstream someinput -dumpfile pipe.avi");
两种情况下我都超时了。任何人都可以帮我解决这个问题吗?谢谢。
Good day to all.
I need to send a request to a script and then to execute some commands (basically I need to start ffmpeg when clicking on a link).
I tried this:
exec("ffserver &");
exec("ffmpeg -i pipe.avi output.avi");
exec("mplayer -dumpstream someinput -dumpfile pipe.avi");
and this
shell_exec("ffserver &");
shell_exec("ffmpeg -i pipe.avi output.avi");
shell_exec("mplayer -dumpstream someinput -dumpfile pipe.avi");
In both cases I got timeout. Can any1 help me with this? Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以尝试一下,它已由用户 bahri 在 bahri dot info 发布,作为对 执行
You could try this, its has been posted by user bahri at bahri dot info as a comment to the PHP manual entry for exec
如果这只是超时错误,请尝试设置 set_time_limit(xx);在你的代码之上。
其中xx对应的是等待的时间,以秒为单位。
设置 0 表示没有时间限制,但如果您的脚本进入无限循环,或者它正在等待来自永远不会到达的编码命令的反馈,则可能会无休止...
If this is only a timeout error, try putting set_time_limit(xx); on top of your code.
With xx corresponding to the time to wait in seconds.
Putting 0 means no time limit, but it may be endless if your script enters an infinite loop, of if it is waiting a feedback from your encoding command that never arrives...
尝试在
php.ini
文件中或通过设置函数 set_time_limitTry to increase PHP script execution time in your
php.ini
file or by setting the function set_time_limit