简体   繁体   English

使用 GStreamer 管道创建 onvif 合规摄像头

[英]Creating the onvif compliance camera using the GStreamer Pipeline

I have a camera and I am streaming the video data using the GStreamer.我有一台相机,我正在使用 GStreamer 流式传输视频数据。 With below pipeline.使用下面的管道。

gst-launch-1.0 -e camerasrc ! video/x-h264,width=1920,height=1080,framerate=30/1 ! h264parse config-interval=-1 ! rtph264pay pt=96 ! udpsink host=127.0.0.1 port=8554

Now I would like to make the streaming ONVIF compliance.现在我想让流媒体 ONVIF 合规。 How I can do it with Gstreamer?我怎么能用 Gstreamer 做到这一点?

GStreamer has support for ONVIF. GStreamer 支持 ONVIF。 Unfortunately it is not just as easy as running a pipeline with gst-launch, you should implement an RTSP server by using the gst-rtsp-server .不幸的是,这并不像使用 gst-launch 运行管道那么简单,您应该使用gst-rtsp-server来实现 RTSP 服务器。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM