I will check a bit further some other time - I've had enough for the moment.
Your new mplayer.sh is slightly different from what I had. Yours begins #!/bin/sh scriptpid=$$ apppid=/tmp/.alienbbc-app.$$.pid app=mplayer if [ -x /usr/local/bin/$app ] ; then app=/usr/local/bin/$app else which $app > /dev/null if [ $? -eq 1 ] ; then echo Error - $app Not Found on path >&2 exit fi fi whereas mine begins #!/bin/sh app=mplayer if [ -x /usr/local/bin/$app ] ; then app=/usr/local/bin/$app else which $app > /dev/null if [ $? -eq 1 ] ; then echo Error - $app Not Found on Path exit fi fi scriptpid=$$ apppid=/tmp/.alienbbc-app.$$.pid I can't see any other differences, though I could check further. My version certainly works, I'm listening to it now. Yours came up with an error message on the SB (actually, on SoftSqueeze), which I thought (as you can gather, I'm getting confused) came up even with mplayer in its proper place. The message was something like "rtsp error - check file types" -- danco ------------------------------------------------------------------------ danco's Profile: http://forums.slimdevices.com/member.php?userid=210 View this thread: http://forums.slimdevices.com/showthread.php?t=22476 _______________________________________________ plugins mailing list [email protected] http://lists.slimdevices.com/lists/listinfo/plugins
