summaryrefslogtreecommitdiffstats
path: root/multimedia/flowblade/mlt7.patch
diff options
context:
space:
mode:
Diffstat (limited to 'multimedia/flowblade/mlt7.patch')
-rw-r--r--multimedia/flowblade/mlt7.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/multimedia/flowblade/mlt7.patch b/multimedia/flowblade/mlt7.patch
new file mode 100644
index 0000000000..9f9a1e25b9
--- /dev/null
+++ b/multimedia/flowblade/mlt7.patch
@@ -0,0 +1,21 @@
+diff --git a/flowblade-trunk/flowblade b/flowblade-trunk/flowblade
+index 01f6d092..2cdfcedb 100755
+--- a/flowblade-trunk/flowblade
++++ b/flowblade-trunk/flowblade
+@@ -58,11 +58,11 @@ sys.path.insert(0, modules_path)
+ # Check that we have MLT, missing is fatal.
+ try:
+ import mlt
+- try:
+- mlt_version = mlt.LIBMLT_VERSION
+- print ("MLT found, version:", mlt_version)
+- except:
+- print ("MLT found but version info not available. MLT probably too old to work reliably...")
++except:
++ import mlt7 as mlt
++
++try:
++ mlt_version = mlt.LIBMLT_VERSION
+ except Exception as err:
+ print ("MLT not found, exiting...")
+ print ("ERROR:", err)