diff options
author | MaZderMind <git@mazdermind.de> | 2015-09-27 16:37:54 +0200 |
---|---|---|
committer | MaZderMind <git@mazdermind.de> | 2015-09-27 16:37:54 +0200 |
commit | 9a5a91277efed7bf18966f2e8797d18b10bfbb6a (patch) | |
tree | 026d295d2048b9b4b30ce8ecafc13596b2a633f2 /voctogui/voctogui.py | |
parent | 867b8be36b312881b458ec51ab0b2a9950512f4a (diff) | |
parent | c11afb9995f452cb702ddef128f7e652f399bdbc (diff) |
Merge remote-tracking branch 'nueces/master'
Diffstat (limited to 'voctogui/voctogui.py')
-rwxr-xr-x | voctogui/voctogui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/voctogui/voctogui.py b/voctogui/voctogui.py index 703bb67..d37e168 100755 --- a/voctogui/voctogui.py +++ b/voctogui/voctogui.py @@ -9,6 +9,7 @@ from gi.repository import Gtk, Gdk, Gst, GObject, GdkX11, GstVideo minGst = (1, 5) minPy = (3, 0) +Gst.init([]) if Gst.version() < minGst: raise Exception("GStreamer version", Gst.version(), 'is too old, at least', minGst, 'is required') @@ -20,7 +21,6 @@ if sys.version_info < minPy: GObject.threads_init() Gdk.init([]) Gtk.init([]) -Gst.init([]) # import local classes from lib.args import Args |