Scheduled pause in Gnonlin Scheduled pause in Gnonlin python python

Scheduled pause in Gnonlin


Based on this article http://www.jonobacon.com/2006/12/27/using-gnonlin-with-gstreamer-and-python/, if I'm understanding it right, I think you can write:

self.video[0].set_property("location", LOCATION_VIDEO1)self.video[0].set_property("start", 0 * gst.SECOND)self.video[0].set_property("duration", 5 * gst.SECOND)self.video[0].set_property("media-start", 0 * gst.SECOND)self.video[0].set_property("media-duration", 0 * gst.SECOND)

To get a frozen frame for 5 seconds. It may work for you...alternatively this may work:

self._playbin.set_state(gst.STATE_PAUSED) 

Other than that, I have no suggestions - documentation seems sparse. If you could point me to an API I may have a better idea.