[gstreamer-bugs] [Bug 340338] [v4l2src] Doesn't implement GstImplementsInterface properly

GStreamer (bugzilla.gnome.org) bugzilla-daemon at bugzilla.gnome.org
Fri Sep 22 10:29:59 PDT 2006


Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=340338

GStreamer | gst-plugins-bad | Ver: HEAD CVS





------- Comment #12 from Fredrik Persson  2006-09-22 17:29 UTC -------
Changing the script from:

import gst
import gobject

source = gst.element_factory_make("v4l2src")
print source.get_channel()

... to...

import gst
import gobject

source = gst.element_factory_make("v4l2src")
source.set_property("device","/dev/video0")
source.set_state(gst.STATE_PLAYING)
channel = source.get_channel()
print channel.label

... fixed the problem.


-- 
Configure bugmail: http://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