I tried to execute the following command in console:
Code:
mkfifo /tmp/pipe
mpg123 -R < /tmp/pipe &
echo "load test.mp3" < /tmp/pipe &
From the output on screen, it seems that the command "load test.mp3" was actually sent to mpg123. mpg123 did load the mp3 file and print ID3 tag contained in the mp3 file. Then, mpg123 stopped. What's the problem?