diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-29 04:58:22 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-29 04:58:22 +0000 |
commit | 258e4fcdf22745ce2b119df63458790461a6fbf0 (patch) | |
tree | 779f2a232d11bd2cbd4efca72f450e1af2640320 /play/index.php | |
parent | db47bcb6c018fecae71b8b7120c70d7ef9c7bcf6 (diff) | |
download | ampache-258e4fcdf22745ce2b119df63458790461a6fbf0.tar.gz ampache-258e4fcdf22745ce2b119df63458790461a6fbf0.tar.bz2 ampache-258e4fcdf22745ce2b119df63458790461a6fbf0.zip |
fixed downsampling, renamed to transcoding default or always are now the options
Diffstat (limited to 'play/index.php')
-rw-r--r-- | play/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/play/index.php b/play/index.php index a02defcb..438db254 100644 --- a/play/index.php +++ b/play/index.php @@ -248,7 +248,7 @@ if (Config::get('access_control') AND Config::get('downsample_remote')) { } // if access_control // If they are downsampling, or if the song is not a native stream or it's non-local -if ($GLOBALS['user']->prefs['play_type'] == 'downsample' || !$song->native_stream() || $not_local) { +if ($GLOBALS['user']->prefs['transcode'] == 'always' || !$song->native_stream() || $not_local) { debug_event('downsample','Starting Downsample...','5'); $results = start_downsample($song,$lastid,$song_name); $fp = $results['handle']; |