# 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):
# Create the pipelie and enter main loop, quit with ctrl+c
start = Main()
-mainloop = gobject.MainLoop()
+mainloop = GObject.MainLoop()
mainloop.run()