After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 749672 - select video sink instead of audio sink
select video sink instead of audio sink
Status: RESOLVED NOTABUG
Product: GStreamer
Classification: Platform
Component: gst-plugins-base
1.4.5
Other Windows
: Normal normal
: NONE
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2015-05-21 10:04 UTC by cynthia.serber
Modified: 2015-05-21 12:06 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
playbin : pipeline (604.38 KB, image/png)
2015-05-21 10:04 UTC, cynthia.serber
Details
audio sink (319.06 KB, image/png)
2015-05-21 10:05 UTC, cynthia.serber
Details

Description cynthia.serber 2015-05-21 10:04:36 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 ?
Comment 1 cynthia.serber 2015-05-21 10:05:42 UTC
Created attachment 303736 [details]
audio sink
Comment 2 Tim-Philipp Müller 2015-05-21 10:25:10 UTC
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.
Comment 3 cynthia.serber 2015-05-21 12:06:43 UTC
Ok it work :

...! play.video_sink playsink name=play