有人可以粘貼一對使用rtpvrawpay
和rtpvrawdepay
的gst-launch管道嗎?GStreamer中rtpvrawpay的工作示例
這是我的第一個嘗試吧:
gst-launch-1.0 videotestsrc ! videoconvert ! video/x-raw,width=128,height=128,format=BGR ! rtpvrawpay ! application/x-rtp,payload=96 ! udpsink host=... port=...
gst-launch-1.0 udpsrc port=9999 ! application/x-rtp,media=video,payload=96,clock-rate=90000,encoding-name=RAW,sampling=BGR,depth=16 ! rtpvrawdepay ! video/x-raw,width=128,height=128,format=BGR,framerate=30/1 ! videoconvert ! ximagesink
是的,由於某種原因,如果我用這個語法做了一個過濾器:'udpsrc!應用程序/ x-rtp,...「它不起作用。複製發送管道中的精確上限並將其放入'udpsrc'的'caps'屬性中。 – mpr