diff options
author | Juan A. Diaz <juan@linux.org.ar> | 2015-09-26 17:20:56 -0300 |
---|---|---|
committer | Juan A. Diaz <juan@linux.org.ar> | 2015-09-26 17:20:56 -0300 |
commit | c11afb9995f452cb702ddef128f7e652f399bdbc (patch) | |
tree | 1770ae8d95436433565d75875eca3cfc91463616 /voctocore | |
parent | b30ba5aff5f1d0bce7ab47c1818a5b07f1aba3d7 (diff) |
Gst must be initialized before call any method.
Diffstat (limited to 'voctocore')
-rwxr-xr-x | voctocore/voctocore.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/voctocore/voctocore.py b/voctocore/voctocore.py index 609ef52..aa5350d 100755 --- a/voctocore/voctocore.py +++ b/voctocore/voctocore.py @@ -9,6 +9,7 @@ from gi.repository import Gst, GObject 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') @@ -18,7 +19,6 @@ if sys.version_info < minPy: # init GObject & Co. before importing local classes GObject.threads_init() -Gst.init([]) # import local classes from lib.args import Args |