GNOME Bugzilla – Bug 749672
select video sink instead of audio sink
Last modified: 2015-05-21 12:06:43 UTC
Created attachment 303735 [details] playbin : pipeline I use playbin to stream my video and it work fine but I have latency about 3 seconds. I try to use GraphViz to know the pipeline and it give me : uridecodebin -> inputselector -> playsink But when I try this command line below : gst-launch-1.0 uridecodebin uri="udp://127.0.0.1:1234" ! input-selector n-pads=1 ! playsink The graph indicate audio sink. The streaming doesn't contain audio. Someone know the good pipeline to select video sink ?
Created attachment 303736 [details] audio sink
Please use the gstreamer-devel mailing list for support questions. Something like this should work: ... ! play.audio_sink playsink name=play or ... ! play.audio_raw_sink playsink name=play gst-launch can't know what pad template to link it to here, so will just pick the first presumably. It's a limitation of gst-launch.
Ok it work : ...! play.video_sink playsink name=play