How to add a plugin to Gstreamer

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

How to add a plugin to Gstreamer

1,614 Views
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?

Labels (1)
0 Kudos
2 Replies

911 Views
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 Kudos

911 Views
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 Kudos