-1

我是一名 python 开发人员,几天来我一直在尝试使用套接字制作基于 RTSP 的应用程序。我不想使用网络服务器,我想创建自己的基于 RTSP 的服务器。

我的问题是,我想让我的 python 应用程序与网络浏览器对话:我的 python 应用程序必须在某个套接字上接收一个电影流并将这个流传递给该浏览器的电影播放器​​。任何想法?

4

1 回答 1

1

If you want your Python application to talk to a web browser, your Python application will either have to act as a webserver or run under the control of another webserver (such as Apache). The first option is certainly the most convenient, and many Python web frameworks (Django, Bottle, CherryPy, etc) include an embedded webserver that makes this sort of thing very easy.

于 2012-06-06T02:06:06.340 回答