--- Source.pm.orig 2004-09-03 11:03:17.000000000 +0200 +++ Source.pm 2004-09-04 06:24:33.829905080 +0200 @@ -1200,6 +1200,11 @@ # files with [] in their names. $command =~ s/\[([^\]]+)\]/'"' . Slim::Utils::Misc::findbin($1) . '"'/eg; + # Replace ` (decimal 96 in ISO Latin 1) and " (decimal 34) in file names, + # otherwise these files are not convertable + $filepath =~ s/\`/\\\`/g; + $filepath =~ s/\"/\\\"/g; + $command =~ s/\$FILE\$/"$filepath"/g; $command =~ s/\$URL\$/"$fullpath"/g; $command =~ s/\$RATE\$/$samplerate/g;