diff options
author | MaZderMind <github@mazdermind.de> | 2015-05-14 11:58:03 +0200 |
---|---|---|
committer | MaZderMind <github@mazdermind.de> | 2015-05-14 11:58:03 +0200 |
commit | 386ddcdcc0c04f2bd2fee3c572408fc51cf6c1ef (patch) | |
tree | 10d38250858a350a990e253a1ab329858a2d36f9 /voctocore | |
parent | e4080d3ac8a9d16d1919250604b9a41f1197db97 (diff) |
Require GStreamer 1.5 because of fixes in the inter* elements
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 43826d1..cbc1fe1 100755 --- a/voctocore/voctocore.py +++ b/voctocore/voctocore.py @@ -6,7 +6,7 @@ gi.require_version('Gst', '1.0') from gi.repository import Gtk, Gdk, Gst, GObject, GdkX11, GstVideo # check min-version -minGst = (1, 4) +minGst = (1, 5) minPy = (3, 0) if Gst.version() < minGst: |