GNOME Bugzilla – Bug 705154
xxx not in range 0 to 4294967295 when is clearly accepts 0->2**64-1
Last modified: 2013-07-31 00:29:54 UTC
On a piece of code i'm porting there's this line: self.pipeline.set_start_time(Gst.CLOCK_TIME_NONE) and i got a trace back saying: exceptions.ValueError: -1 not in range 0 to 4294967295 But when i change the line to: self.pipeline.set_start_time(2**64-1) it works
that error comes from pygobject, not glib
Hi, What version of PyGObject and Gst is this with (use gi.version_info and Gst.version()) ? what is the architecture of the machine?
It looks like this was a problem in gobject-introspection which has already been fixed. Please re-open if you are seeing this problem in newer versions of PyGObject (>= 3.4 I think). *** This bug has been marked as a duplicate of bug 678928 ***