使用 gstreamer 或 avconv 通过 RTP 传输 .jpg 流

使用 gstreamer 或 avconv 通过 RTP 传输 .jpg 流

我有一个图像文件夹,其中正在不断更新 Photo.jpg(1 FPS)。

我需要能够通过 RTsP 将这张照片作为连续的视频流传输,以便使用 VLC 观看。

执行此操作的有效解决方案或查询是什么?我有 avconv 和 gstreamer,我相信两者都可以解决问题,但我尝试使用这两种启动语法时都没有成功。

gst-launch-1.0 multifilesrc location="C:\\Pictures\\Photo.jpg" loop=true start-index=0 stop-index=0  ! image/jpeg,width=640,height=512,type=video,framerate=1/1 ! identity ! jpegdec ! videoscale ! videoconvert ! x264enc ! h264parse ! rtph264pay ! udpsink host=127.0.0.1 port=5000

avconv -loop 1 -i "C:\Pictures\photo.jpg" -r 0.1 -c:v libx264 -pix_fmt yuv420p out.mp4 -y

答案1

gst-launch-1.0 multifilesrc location="C:\\Pictures\\Photo.jpg" loop=true start-index=0 stop-index=0  ! image/jpeg,width=640,height=512,type=video,framerate=30/1 ! identity ! jpegdec ! videoscale ! videoconvert ! x264enc ! h264parse ! mpegtsmux ! rtpmp2tpay ! udpsink host=127.0.0.1 port=5000

这似乎有效。

相关内容