From 8ac967d082e06009fa4d45218fda33df8f34aaf8 Mon Sep 17 00:00:00 2001 From: Matthew Clark Date: Tue, 20 Mar 2018 11:22:18 +0000 Subject: [PATCH] update gst.init to use more recent version --- python_examples/playbin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_examples/playbin.py b/python_examples/playbin.py index de57c01..229221e 100644 --- a/python_examples/playbin.py +++ b/python_examples/playbin.py @@ -12,7 +12,7 @@ gi.require_version('Gst', '1.0') from gi.repository import GObject, Gst import os -Gst.init() +Gst.init(None) mainloop = GObject.MainLoop() pipeline = Gst.ElementFactory.make("playbin", "player")