<div dir="ltr">Hello, <br><div>Your question is quite spread around. Looking on your pipelines I see a couple of issues from the beginning:</div><div><br></div><div>SENDER :<br>gst-launch-1.0 <b>filesrc location=test.png </b>! pngdec ! videoconvert ! x264enc<br>tune=zerolatenc! rtph264pay ! udpsink host=127.0.0.1 port=5000<br></div><div><br></div><div>I'm not quite sure that it will work. I think it is better to use multifilesrc and loop property. It reads the file, converts and produce a single frame of h264, after that pipeline should be finished. </div><div><br></div><div>CLIENT :<br>gst-launch-1.0 -v <b>udpsrc multicast-group=224.0.0.7 auto-multicast=true<br>port=5001</b><br>caps="application/x-rtp,media=(string)video,clock-rate=(int)90000,encoding-name=(string)H264,payload=(int)96"<br>! rtpjitterbuffer latency=500 ! rtph264depay ! h264parse ! imxvpudec !<br>imxipuvideotransform ! imxipuvideosink framebuffer=/dev/fb0 use-vsync=true<br></div><div><br></div><div>It is weird - you're sending stream as a single multicast stream, but trying to receive it from the multicast group from different addresses and port. </div><div>Are you using imx board? (you did not state that in your question)</div><div><br></div><div>Best regards,</div><div>Anton.</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Apr 27, 2020 at 12:10 PM kukuman <<a href="mailto:sja05065@gmail.com">sja05065@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi Everyone.<br>
<br>
I'm noob of gstreamer.<br>
<br>
i send to udpsink about my encoding PNG file data.<br>
<br>
i think PNG file to decoding -> videoconvert -> x264enc -> rtph264pay -><br>
udpsink<br>
<br>
so SENDER give to my CLIENT h264 data. but my CLIENT is not receive h264<br>
data.<br>
<br>
CLIENT doesn't show SENDER sended h264 data.<br>
<br>
SENDER : <br>
gst-launch-1.0 filesrc location=test.png ! pngdec ! videoconvert ! x264enc<br>
tune=zerolatenc! rtph264pay ! udpsink host=127.0.0.1 port=5000<br>
<br>
CLIENT :<br>
gst-launch-1.0 -v udpsrc multicast-group=224.0.0.7 auto-multicast=true<br>
port=5001<br>
caps="application/x-rtp,media=(string)video,clock-rate=(int)90000,encoding-name=(string)H264,payload=(int)96"<br>
! rtpjitterbuffer latency=500 ! rtph264depay ! h264parse ! imxvpudec !<br>
imxipuvideotransform ! imxipuvideosink framebuffer=/dev/fb0 use-vsync=true<br>
<br>
please give me mercy..<br>
<br>
<br>
<br>
--<br>
Sent from: <a href="http://gstreamer-devel.966125.n4.nabble.com/" rel="noreferrer" target="_blank">http://gstreamer-devel.966125.n4.nabble.com/</a><br>
_______________________________________________<br>
gstreamer-devel mailing list<br>
<a href="mailto:gstreamer-devel@lists.freedesktop.org" target="_blank">gstreamer-devel@lists.freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel" rel="noreferrer" target="_blank">https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a><br>
</blockquote></div>