From 5b25411a60e0f354ee50128fb91687be0d1763a7 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Thu, 25 Sep 2014 16:18:13 +0200 Subject: [PATCH] only use melt if USE_MELT is set --- pandora/archive/extract.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora/archive/extract.py b/pandora/archive/extract.py index 266141aa..85f9273a 100644 --- a/pandora/archive/extract.py +++ b/pandora/archive/extract.py @@ -342,7 +342,7 @@ def frame(video, frame, position, height=128, redo=False, info=None): if settings.USE_MELT: cmd = melt_frame_cmd(video, frame, position, height, info) else: - cmd = melt_frame_cmd(video, frame, position, height) + cmd = avconv_frame_cmd(video, frame, position, height) else: cmd = ['oxframe', '-i', video, '-o', frame, '-p', str(position), '-y', str(height)]