This commit is contained in:
Pierre Rudloff 2015-05-16 03:23:55 +02:00
parent 8d39c646ec
commit f4495794fe
4 changed files with 11 additions and 4 deletions

View file

@ -14,7 +14,12 @@
define('YOUTUBE_DL', './youtube-dl');
define('PYTHON', '/usr/bin/python');
define('PARAMS', '--no-playlist --no-warnings');
define('CONVERT', false);
if (getenv('CONVERT')) {
define('CONVERT', getenv('CONVERT'));
} else {
define('CONVERT', false);
}
define('AVCONV', __DIR__.'/ffmpeg-2.6.2-64bit-static/ffmpeg');
define('MAINTENANCE', false);
define('DISABLED', false);
define('BASE_URL', 'http://alltubedownload.net/');