The formal way to run mplayer in background.
mplayer some.mkv </dev/null >/dev/null 2>&1 &
[3]9536
[3]9536
means pid of the mplayer command is 9536.
If i replace &1 with 1 for the above command:
mplayer some.mkv </dev/null >/dev/null 2>1 &
[4] 9590
[3] Done mplayer some.mkv < /dev/null > /dev/null 2> 1
Why got the extra output here?
[3] Done mplayer some.mkv < /dev/null > /dev/null 2> 1