屏幕流的SDP消息

发布于 2024-10-25 22:57:50 字数 286 浏览 3 评论 0原文

通过 RTSP 传输文件时,有时会发送 SDP 消息,以便:

...
m=video 3000 RTP/AVP 32
a=rtpmap:32 MPV/90000
a=control:rtsp://192.168.0.201/video
a=mimetype: video/MPV
...

在 SDP 消息中发送的信息,如果不传输文件,而是传输网络摄像头或屏幕流,是否必须有所不同?

如果是这样,应该如何创建SDP消息来传输网络摄像头或屏幕流?

感谢您的帮助。

When transmitting files over RTSP, at one point, a message is sent SDP such that:

...
m=video 3000 RTP/AVP 32
a=rtpmap:32 MPV/90000
a=control:rtsp://192.168.0.201/video
a=mimetype: video/MPV
...

Information sent in the SDP message, does it have to be different if, instead of transmitting files, transmitting the webcam or screen stream?

If so, how should create the SDP message to transmit the webcam or screen stream?

Thanks for the help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑梦风尘 2024-11-01 22:57:50

我找到了我的问题的答案。要创建 YUV 格式并通过 RTSP / RTP 传输的网络摄像头流,我们必须转向 JPEG_RTP。

此外,这意味着SDP消息、参数“m”(http://www.ietf.org/rfc/rfc4566.txt第22页)和参数“a”(http://www.ietf.org/ rfc/rfc4566.txt 第 21 页)必须具有以下值:

...
m=video 3000 RTP/AVP 26
a=rtpmap:26 JPEG/90000
a=control:rtsp://192.168.0.201/video
a=mimetype: video/JPEG
....

问候!

I found the answer to my question. The webcam stream to create the YUV format and for transmission over RTSP / RTP, we must turn to JPEG_RTP.

Furthermore, this means that the SDP message, the parameter "m " (http://www.ietf.org/rfc/rfc4566.txt page 22) and the parameter "a" (http://www.ietf.org/rfc/rfc4566.txt page 21) must have the value:

...
m=video 3000 RTP/AVP 26
a=rtpmap:26 JPEG/90000
a=control:rtsp://192.168.0.201/video
a=mimetype: video/JPEG
....

Greetings!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文