Config in a separate file (fixes #2 and fixes #3)

This commit is contained in:
Pierre Rudloff 2014-07-05 12:45:24 +02:00
parent c9990a2084
commit 8825ff2117
4 changed files with 40 additions and 17 deletions

17
config.php Normal file
View file

@ -0,0 +1,17 @@
<?php
/**
* PHP web interface for youtube-dl (http://rg3.github.com/youtube-dl/)
* Config file
*
* PHP Version 5.3.10
*
* @category Youtube-dl
* @package Youtubedl
* @author Pierre Rudloff <rudloff@strasweb.fr>
* @license GNU General Public License http://www.gnu.org/licenses/gpl.html
* @link http://rudloff.pro
* */
define('YOUTUBE_DL', './youtube-dl');
define('PYTHON', '/usr/bin/python');
define('PARAMS', '--no-playlist --no-warnings');
?>