diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-15 08:35:00 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-15 08:35:00 +0000 |
commit | 1cf10721654764b366f6b105e76da071aa3c7f66 (patch) | |
tree | 046769763526b68033e8bfb521389f8db1556e25 /config | |
parent | 5d98a104bc750053e90da5f8dd9664e0433f900d (diff) | |
download | ampache-1cf10721654764b366f6b105e76da071aa3c7f66.tar.gz ampache-1cf10721654764b366f6b105e76da071aa3c7f66.tar.bz2 ampache-1cf10721654764b366f6b105e76da071aa3c7f66.zip |
fixed two transcode bugs
Diffstat (limited to 'config')
-rw-r--r-- | config/ampache.cfg.php.dist | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/ampache.cfg.php.dist b/config/ampache.cfg.php.dist index 942b5fcf..d31728fc 100644 --- a/config/ampache.cfg.php.dist +++ b/config/ampache.cfg.php.dist @@ -492,8 +492,8 @@ transcode_flac_target = mp3 transcode_mp3_target = mp3 ; These are the commands that will be run to transcode the file -transcode_cmd_flac = "flac -dc %FILE% | lame -r -b 128 -S - - " -transcode_cmd_m4a = "faad -f 2 -w %FILE% | lame -r -b 128 -S - -" +transcode_cmd_flac = "flac -dc %FILE% | lame -b %SAMPLE% -S - - " +transcode_cmd_m4a = "faad -f 2 -w %FILE% | lame -r -b %SAMPLE% -S - -" transcode_cmd_mp3 = "mp3splt -qnf %FILE% %OFFSET% %EOF% -o - | lame --mp3input -q 3 -b %SAMPLE% -S - -" # This line seems to work better for windows, switch if needed |