From 9c5b8ae8cd174bf68ae5bda7b03ad21dca5a0f9b Mon Sep 17 00:00:00 2001 From: Adrien Beudin Date: Tue, 3 May 2016 09:47:57 +0200 Subject: [PATCH] fix support libav 2 --- prosopopee/prosopopee.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prosopopee/prosopopee.py b/prosopopee/prosopopee.py index 61972b8..e73c700 100644 --- a/prosopopee/prosopopee.py +++ b/prosopopee/prosopopee.py @@ -163,7 +163,7 @@ class Image(object): def main(): - for i in ['gm', 'ffmpeg']: + for i in ['gm', options["binary"]]: if os.system("which " + i +" > /dev/null") != 0: sys.stderr.write("ERROR: I can't locate the "+ i +" binary, " "please install the '" + i + "' package.\n")