The error message relates to mplayer trying to write to the fifo that
should have been created - it looks like it has failed foir some reason
and the mkfifo shell script does no error checking so it doesn't exit.

Code:
--------------------
    
  mplayer: could not connect to socket
  mplayer: No such file or directory
  
--------------------


I think the Fifo routine was created for user who systems does not have
/dev/fd.  If your Debian has /dev/fd then use the second method but as
follows for 3 file types. Unfortunately if it fails there will be no
error message which is why the mplayer.sh installed with AlienBBC is
preferable.

Code:
--------------------
    
  wma wav * *
        [mplayer] -really-quiet -vc null -vo null -cache 128 -af 
volume=0,resample=44100:0:1,channels=2 -ao pcm:nowaveheader:file=/dev/fd/4 
$FILE$ 4>&1 1>/dev/null
  wma mp3 * *
        [mplayer] -really-quiet -vc null -vo null -cache 128 -af 
volume=0,resample=44100:0:1,channels=2 -ao pcm:nowaveheader:file=/dev/fd/4 
$FILE$ 4>&1 1>/dev/null | [lame] --silent -r -x -q $QUALITY$ -b $BITRATE$ - -
  wma flc * *
        [mplayer] -really-quiet -vc null -vo null -cache 128 -af 
volume=0,resample=44100:0:1,channels=2 -ao pcm:nowaveheader:file=/dev/fd/4 
$FILE$ 4>&1 1>/dev/null | [flac] -cs --totally-silent --endian=little 
--channels=2 --sign=signed --bps=16 --sample-rate=44100 --compression-level-0 -
  
--------------------


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

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

Reply via email to