下载流媒体RTSP协议
PHP 或 C# 中是否有任何类或片段(如果可以的话,在 php 中更好)可以从使用 RTSP 协议的流媒体源下载视频?
预先非常感谢。
此致。
何塞.
Are there any class or snippet in PHP or C# (better in php if could be), to download video from an streaming source that uses RTSP protocol?
Thanks a lot in advance.
Best Regards.
Jose.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须调用外部程序才能执行此操作。查看
mplayer -dumpstream
,如果失败,请查看rtmpdump
。请记住,保存流将需要很长时间,因此几乎肯定最好在产生大量工作人员的外部进程中完成。然后,您的 Web 应用程序可以与进程进行通信,来回传递作业和结果。You will have to call out to an external program to do this. Check out
mplayer -dumpstream
and, if that fails,rtmpdump
. Keep in mind that saving the stream will take a long time, so it's almost certainly better done in an external process that spawns a number of worker. Your web application can then communicate with the process to pass jobs and results back and forth.