From 46f07dc148ba5d4db6c6003a30bc2120d676a70a Mon Sep 17 00:00:00 2001 From: David Karchmer Date: Thu, 17 Dec 2015 00:23:04 -0800 Subject: [PATCH] Fix config_default --- config_defaults.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config_defaults.py b/config_defaults.py index 62a32ba..45084d9 100644 --- a/config_defaults.py +++ b/config_defaults.py @@ -9,5 +9,5 @@ import os -FFMPEG_BINARY = os.getenv('FFMPEG_BINARY', 'auto-detect') -IMAGEMAGICK_BINARY = os.getenv('FFMPEG_BINARY', 'auto-detect') \ No newline at end of file +FFMPEG_BINARY = os.getenv('FFMPEG_BINARY', 'ffmpeg') +IMAGEMAGICK_BINARY = os.getenv('IMAGEMAGICK_BINARY', 'convert') \ No newline at end of file