[Bug 705134] Missing plugin message fired due to Kate subtitles

GStreamer (bugzilla.gnome.org) bugzilla at gnome.org
Wed Aug 14 02:40:33 PDT 2013


https://bugzilla.gnome.org/show_bug.cgi?id=705134
  GStreamer | gst-plugins-bad | git

Christian Fredrik Kalager Schaller <Uraeus> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEEDINFO                    |NEW

--- Comment #5 from Christian Fredrik Kalager Schaller <Uraeus at linuxrising.org> 2013-08-14 09:40:30 UTC ---
Not really, here is what I do with uridecodebin:

self.uridecoder = Gst.ElementFactory.make("uridecodebin", "uridecoder")
self.uridecoder.set_property("uri", self.streamdata['filechoice'])
self.uridecoder.connect("pad-added", self.OnDynamicPad)
self.uridecoder.connect('source-setup', self.dvdreadproperties)

if (self.audiodata[0]['dopassthrough']) or (self.videodata[0]['dopassthrough'])
or (self.videodata[0]['outputvideocaps']=="novid"):
self.uridecoder.set_property("caps", self.remuxcaps) 
self.uridecoder.set_state(Gst.State.PAUSED)
self.pipeline.add(self.uridecoder)

As you see the 'caps' property is only set when remuxing, which was not the
case here. And the pad-added signal got code that says to ignore any 'text/'
pads appearing.

-- 
Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


More information about the gstreamer-bugs mailing list