Python Gstreamer: Internal data flow error porting program from 0.10 to 1.0
AlexZhou
zhouhao19931002 at 163.com
Thu Jul 28 16:25:50 UTC 2016
I think that following lines had errors:
self.udpsrc = Gst.ElementFactory.make('udpsrc', 'src')
self.pipeline.add(self.udpsrc)
self.udpsrc.set_property("socket",Gio.Socket().new_from_fd(self.videosocket.fileno()))
They should be:
self.udpsrc = Gst.ElementFactory.make('udpsrc', 'src')
self.udpsrc.set_property("socket",Gio.Socket().new_from_fd(self.videosocket.fileno()))
self.pipeline.add(self.udpsrc)
--
View this message in context: http://gstreamer-devel.966125.n4.nabble.com/Python-Gstreamer-Internal-data-flow-error-porting-program-from-0-10-to-1-0-tp4678062p4678889.html
Sent from the GStreamer-devel mailing list archive at Nabble.com.
More information about the gstreamer-devel
mailing list