Index: server/Slim/Formats.pm =================================================================== --- server/Slim/Formats.pm (revision 20786) +++ server/Slim/Formats.pm (working copy) @@ -54,6 +54,7 @@ 'aif' => 'Slim::Formats::AIFF', 'wma' => 'Slim::Formats::WMA', 'mov' => 'Slim::Formats::Movie', + 'alc' => 'Slim::Formats::Movie', 'shn' => 'Slim::Formats::Shorten', 'mpc' => 'Slim::Formats::Musepack', 'ape' => 'Slim::Formats::APE', Index: server/Slim/Formats/Movie.pm =================================================================== --- server/Slim/Formats/Movie.pm (revision 20786) +++ server/Slim/Formats/Movie.pm (working copy) @@ -53,8 +53,9 @@ # If encoding is alac, the file is lossless. if ($tags->{'ENCODING'} && $tags->{'ENCODING'} eq 'alac') { - $tags->{'LOSSLESS'} = 1; - $tags->{'VBR_SCALE'} = 1; + $tags->{'LOSSLESS'} = 1; + $tags->{'VBR_SCALE'} = 1; + $tags->{'CONTENT_TYPE'} = 'alc'; } # Unroll the disc info. Index: server/Slim/Player/TranscodingHelper.pm =================================================================== --- server/Slim/Player/TranscodingHelper.pm (revision 20786) +++ server/Slim/Player/TranscodingHelper.pm (working copy) @@ -228,17 +228,6 @@ @supportedformats = qw(aif wav mp3); } - # Switch Apple Lossless files from a CT of 'mov' to 'alc' for - # conversion purposes, so we can use 'alac' if it's available. - # - # Bug: 2095 - if ($type eq 'mov' && blessed($track) && $track->lossless) { - - $log->debug("Track is alac - updating type!"); - - $type = 'alc'; - } - foreach my $checkFormat (@supportedformats) { my @profiles = ();