diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-01-02 02:32:34 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-01-02 02:32:34 +0000 |
commit | 2caa80fcfd81d6cf79e81ae12fa7c34efb77341a (patch) | |
tree | 013939ea7bba02e08423d0ff78ab6e39714ae9b2 /config/ampache.cfg.php.dist | |
parent | 83f3c4114164617f48f3b013027f9079ddc2675c (diff) | |
download | ampache-2caa80fcfd81d6cf79e81ae12fa7c34efb77341a.tar.gz ampache-2caa80fcfd81d6cf79e81ae12fa7c34efb77341a.tar.bz2 ampache-2caa80fcfd81d6cf79e81ae12fa7c34efb77341a.zip |
fix unescape filename which could potentially get ouside the downsample_cmd
Diffstat (limited to 'config/ampache.cfg.php.dist')
-rw-r--r-- | config/ampache.cfg.php.dist | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/ampache.cfg.php.dist b/config/ampache.cfg.php.dist index 2e832621..cbd73113 100644 --- a/config/ampache.cfg.php.dist +++ b/config/ampache.cfg.php.dist @@ -371,7 +371,7 @@ search_type = fuzzy # %SAMPLE% = sample rate # %EOF% = end of file in min.sec # DEFAULT: mp3splt -qnf "%FILE%" %OFFSET% %EOF% -o - | lame --mp3input -q 3 -b %SAMPLE% -S - - -downsample_cmd = mp3splt -qnf "%FILE%" %OFFSET% %EOF% -o - | lame --mp3input -q 3 -b %SAMPLE% -S - - +downsample_cmd = mp3splt -qnf %FILE% %OFFSET% %EOF% -o - | lame --mp3input -q 3 -b %SAMPLE% -S - - ####################################################### # These are commands used to transcode non-streaming |