<div dir="ltr">Hi <div><br></div><div>Thanks for the replay.</div><div>Your answer left me a bit confused. </div><div><br></div><div>><span style="font-size:12.8000001907349px">Finally, </span><span style="font-size:12.8000001907349px">each streams should be sent to it's down socket in RTP, you may multi</span><span style="font-size:12.8000001907349px">plex them but this is a lot more work.</span></div><div><br></div><div><span style="font-size:12.8000001907349px">Do you mean that I should not mux them and do something like:</span></div><div><span style="font-size:12.8000001907349px"><br></span></div><div><span style="font-size:12.8000001907349px">pipeline 1:</span></div><div><span style="font-size:12.8000001907349px"><br></span></div><div><span style="font-size:12.8000001907349px">gst-launch-1.0 v4l2src !  video/x-raw,width=640,height=480 !  timeoverlay !  tee name="local" !  queue !  autovideosink local. !  queue ! x264enc tune=zerolatency byte-stream=true bitrate=500 threads=1 ! h264parse config-interval=1  ! rtph264pay !  udpsink host=192.168.100.3 port= 5000 udpsrc port=5000 caps=\"application/x-rtp,payload=96,encoding-name=H264\" ! queue ! rtph264depay ! h264parse ! decodebin ! autovideosink</span><br></div><div><span style="font-size:12.8000001907349px"><br></span></div><div><span style="font-size:12.8000001907349px">pipeline 2 :</span></div><div><span style="font-size:12.8000001907349px"><br></span></div><div><span style="font-size:12.8000001907349px">gst-launch-1.0 pulsesrc ! audioconvert ! audioresample ! speexenc ! rtpspeexpay ! udpsink host=192.168.100.3 port=4444 udpsrc port=4444 caps="application/x-rtp, media=(string)audio, clock-rate=(int)16000, encoding-name=(string)SPEEX, encoding-params=(string)1, payload=(int)110" ! rtpjitterbuffer ! rtpspeexdepay ! speexdec ! audioconvert ! audioresample ! autoaudiosink</span><br></div><div><span style="font-size:12.8000001907349px"><br></span></div><div><span style="font-size:12.8000001907349px"><br></span></div><div><span style="font-size:12.8000001907349px">And playing similar pipelines on other PC. I have tried this type of approach and the video part was working but audio part was creating problem</span><span style="font-size:12.8000001907349px">. when I run the second pipeline there is no audio at either end while they work fine independently. Can you please explain the reason. And me out of this problem. </span></div><div><span style="font-size:12.8000001907349px">Thank you.</span></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jun 22, 2015 at 7:32 PM, Nicolas Dufresne <span dir="ltr"><<a href="mailto:nicolas.dufresne@collabora.com" target="_blank">nicolas.dufresne@collabora.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">Le lundi 22 juin 2015 à 17:00 +0530, Lab work a écrit :<br>
> gst-launch-1.0  oggmux name="muxer"  v4l2src ! video/x-raw,<br>
> framerate=30/1, width=640, height=480 ! videoconvert ! x264enc !<br>
> multiqueue ! muxer.  videotestsrc ! video/x-raw, framerate=30/1,<br>
> width=640, height=480 ! videoconvert ! x264enc ! multiqueue ! muxer.<br>
> autoaudiosrc ! audioconvert ! speexenc ! queue ! muxer.  udpsink<br>
> host=127.0.0.1 port=5000<br>
<br>
</span>So you want to stream in RTP over UDP. First you need to drop this<br>
unlinked oggmux. OGG is not RTP. Also it does not work with variable<br>
framerate (which most Logitech camera produces). Second, pick a preset<br>
on x264enc that is suited for live (like tune=zerolatency). Finally,<br>
each streams should be sent to it's down socket in RTP, you may multi<br>
-plex them but this is a lot more work.<br>
<span class="HOEnZb"><font color="#888888"><br>
Nicolas</font></span><br>_______________________________________________<br>
gstreamer-devel mailing list<br>
<a href="mailto:gstreamer-devel@lists.freedesktop.org">gstreamer-devel@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel" rel="noreferrer" target="_blank">http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a><br>
<br></blockquote></div><br></div>