summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-05-21 02:37:30 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-05-21 02:37:30 +0000
commit96c6d35f098a3672549d9b455fd761a6e914c6e8 (patch)
tree97fa4f33b0a4a9de2c785b18ea4e2d754c4bb9ad /config
parentd00617752f4f558bcaf3f3b0200455feb8dfcb8b (diff)
downloadampache-96c6d35f098a3672549d9b455fd761a6e914c6e8.tar.gz
ampache-96c6d35f098a3672549d9b455fd761a6e914c6e8.tar.bz2
ampache-96c6d35f098a3672549d9b455fd761a6e914c6e8.zip
added ogg transcode command, thx p28301016
Diffstat (limited to 'config')
-rw-r--r--config/ampache.cfg.php.dist6
1 files changed, 4 insertions, 2 deletions
diff --git a/config/ampache.cfg.php.dist b/config/ampache.cfg.php.dist
index 472db77c..8bb58cc7 100644
--- a/config/ampache.cfg.php.dist
+++ b/config/ampache.cfg.php.dist
@@ -504,9 +504,11 @@ transcode_mp3_target = mp3
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 - -"
+transcode_cmd_ogg = "oggdec -o - %FILE%| lame -b %SAMPLE% -S - - "
+
+; This line seems to work better for windows, switch if needed
+;transcode_cmd_mp3 = "mp3splt -qnf -o - %FILE% %OFFSET% %EOF% | lame --mp3input -q 3 -b %SAMPLE% -S - -"
-# This line seems to work better for windows, switch if needed
-#transcode_cmd_mp3 = "mp3splt -qnf -o - %FILE% %OFFSET% %EOF% | lame --mp3input -q 3 -b %SAMPLE% -S - -"
;######################################################