Use GTK3 GObject instead of GTK2 gobject
[python-gstreamer-examples] / example1.py
index d69135a8f06d0ab39c45eacf288b7e18444a3b03..3d944bad1c15fd039b8e7696331da2a3a1c88799 100755 (executable)
@@ -7,11 +7,7 @@
 # Info on porting python scripts to Gstreamer 1.0 can be found here:
 # https://wiki.ubuntu.com/Novacut/GStreamer1.0
 
-
-import gi
-gi.require_version('Gst', '1.0')
-from gi.repository import Gst
-import gobject
+from gi.repository import Gst, GObject
 
 class Main:
   def __init__(self):
@@ -35,5 +31,5 @@ class Main:
 
 # Create the pipelie and enter main loop, quit with ctrl+c
 start = Main()
-mainloop = gobject.MainLoop()
+mainloop = GObject.MainLoop()
 mainloop.run()