On Mon, 2005-10-10 at 15:52 +0200, Pete Hillebrand wrote: > recording starts, which works fine too. But how can i prevent mplayer from > beeing started while mencoder is running? I would be happy if i dont have > to hack freevo code...
You could create a simple wrapper for mplayer that checks to see if
mencoder is running and if so, simply exits, otherwise runs mplayer.
Then set the mplayer value to this script in ~/.freevo/freevo.conf.
Something like:
#/bin/bash
if (pidof mencoder>/dev/null); then
exit 1
fi
exec mplayer $@
Cheers,
Jason.
signature.asc
Description: This is a digitally signed message part
