7 Dec
2008
7 Dec
'08
5:07 p.m.
On 2008-12-07 20:59, Pete Nesbitt wrote:
while .... do ... ${MPLAYER} -slave -input file=/data/cm_temp/mplayer_cmds_fifo \ -quiet ${TRACK} &> /dev/null ... done < ${PLAY_LIST} &> /dev/null &
Hi, I'm not expert on MPlayer, but I see an issue with this script: you are launching several MPlayer instances which should all read commands from the same FIFO, but each command will be read by only one instance, chosen more or less randomly. Each MPlayer instance should have its own FIFO. Cheers Federico