I should have taken more time with the replies - reviewing the past log
the command that is being executed is 

'exec "" device=/dev/sg18 -verbose-level=toc -N -g -J  2>
"/volume1/SqueezeCenter/Cache/Forkoutput6.txt"'

Which clearly shows after exec "" where it should be the path to
cdda2wav e.g. /use/local/bin/cdda2wav.

This means SC not just doesn't find cdda2wav but it returns a blank
string.  Looks like a fault in how SC has been ported to QNAP.

In the file Fork.pm

Code:
--------------------
    
        my $forkout      = 
File::Spec::Functions::catfile($prefsServer->get('cachedir'),"Forkoutput$forkcount.txt");
        $self->{forkout} = $forkout;
  
        my $exec = Slim::Utils::Misc::findbin($command);
  
--------------------

Change the text in red to the full path to cdda2wav such as

my $exec = '/usr/local/bin/cdda2wav';


-- 
bpa
------------------------------------------------------------------------
bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=47288

_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to