X-Git-Url: https://git.slaskete.net/python-gstreamer-examples/blobdiff_plain/b54b187e73a58eb84029383355ae66f95d17d75a..f61c6e101a8ccc6559c475b33d2fa0a7ba0a96ba:/example1.py?ds=sidebyside diff --git a/example1.py b/example1.py index 3d944ba..9c41425 100755 --- a/example1.py +++ b/example1.py @@ -7,13 +7,15 @@ # 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, GObject class Main: def __init__(self): # Initiate the pipeline Gst.init(None) - self.pipeline = Gst.Pipeline("mypipeline") + self.pipeline = Gst.Pipeline() # Add an audiotestsrc element to the pipeline self.audiotestsrc = Gst.ElementFactory.make("audiotestsrc", "audio")