Index: /Users/mh/Documents/workspace/trunk/server/Slim/Player/TranscodingHelper.pm =================================================================== --- /Users/mh/Documents/workspace/trunk/server/Slim/Player/TranscodingHelper.pm (revision 19414) +++ /Users/mh/Documents/workspace/trunk/server/Slim/Player/TranscodingHelper.pm (working copy) @@ -350,11 +350,13 @@ $filepath = $fullpath; } - if (Slim::Utils::OSDetect::OS() eq 'win') { - $filepath = Win32::GetShortPathName($filepath); - } - else { - $filepath = Slim::Utils::Unicode::utf8decode_locale($filepath); + if (Slim::Music::Info::isFile($filepath)) { + if (Slim::Utils::OSDetect::OS() eq 'win') { + $filepath = Win32::GetShortPathName($filepath); + } + else { + $filepath = Slim::Utils::Unicode::utf8decode_locale($filepath); + } } $command =~ s/\$FILE\$/"$filepath"/g;