屏幕流的SDP消息
通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了我的问题的答案。要创建 YUV 格式并通过 RTSP / RTP 传输的网络摄像头流,我们必须转向 JPEG_RTP。
此外,这意味着SDP消息、参数“m”(http://www.ietf.org/rfc/rfc4566.txt第22页)和参数“a”(http://www.ietf.org/ rfc/rfc4566.txt 第 21 页)必须具有以下值:
问候!
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:
Greetings!