> I have an issue with the keyboard functions in mplayer. I have installed > many > freevo machines over the last several years and sometimes the keyboard > will use > the mplayer default controls and sometimes they will use the freevo > controls > (ie. + -> vol up, - -> vol down or + -> A-V Delay Up, - -> A-V Delay > Down).
The -slave option to mplayer means that freevo controls mplayer by sending commands on stdin, IIRC in the mplayer docs is a slave.txt which tells you what the commands are. For global events that apply to all freevo you can say something like: EVENTS['global']['+'] = Event(VIDEO_SEND_MPLAYER_CMD, arg='<slave command>') When playing video only you can use: EVENTS['video']['+'] = Event(VIDEO_SEND_MPLAYER_CMD, arg='<slave command>') HTH Duncan ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Freevo-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freevo-users
