How to add a plugin to Gstreamer

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

How to add a plugin to Gstreamer

2,534 次查看
lichao90713
Contributor I

I have an imx6qsabreauto board. There are not udpsrc or udpsink plugins in GStreamer. Now, I want to add udpsrc and udpsink plugins to GStreamer. How can i build the GStreamer-plugins-good?

标签 (1)
0 项奖励
回复
2 回复数

1,831 次查看
joanxie
NXP TechSupport
NXP TechSupport

in current yocto, you don't need to install it, you can use udpsrc or udpsink directly.

for example:
The following command line is an example of how to record and transfer web camera input.
$GSTL imxv4l2src device=/dev/video1 ! vpuenc_h264 ! rtph264pay ! udpsink host=$HOST_IP
HOST_IP is the IP/multicast group to send the packets to.
This command line is an example of how to receive and display web camera input.
$GSTL udpsrc ! application/x-rtp ! rtph264depay ! vpudec ! imxv4l2sink

0 项奖励
回复

1,831 次查看
lichao90713
Contributor I

I know, but it has a warning "WARNING: erroneous pipeline: no element "udpsrc"" when I use the command line. So, It doesn't have the element "udpsrc"

0 项奖励
回复