通过 RTSP 将 jpeg 图像发送为 mjpeg - gStreamer

问题描述 投票:0回答:1

我正在尝试创建一个网络摄像机模拟器。我使用 gstreamer rtsp 服务器 https://github.com/GStreamer/gst-rtsp-server/blob/master/examples/test-launch.c 来实现这一点,但我在管道方面遇到了一些问题。现在我的命令如下所示:

/gst-rtsp-server/examples/test-launch multifilesrc location='./%d.jpeg' index=1 caps='image/jpeg,framerate=12/1' loop=true ! jpegparse ! rtpjpegpay name=pay0 pt=96

而且这不起作用。我知道之前rtpjpegpay应该有更多参数,但我缺乏经验。

gstreamer jpeg rtsp mjpeg
1个回答
0
投票
/gst-rtsp-server/examples/test-launch multifilesrc location=./%d.jpeg index=1 loop=true ! image/jpeg,width=1280,height=1024,framerate=12/1 ! jpegdec ! jpegenc ! rtpjpegpay name=pay0
© www.soinside.com 2019 - 2024. All rights reserved.