Mercurial > mplayer.hg
changeset 25611:27ffe914df15
Add heartbeat-cmd option
author | reimar |
---|---|
date | Mon, 07 Jan 2008 12:30:15 +0000 |
parents | ca8190e97ac3 |
children | 6bee6b0eef6c |
files | DOCS/man/en/mplayer.1 cfg-mplayer.h mplayer.c |
diffstat | 3 files changed, 29 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/DOCS/man/en/mplayer.1 Mon Jan 07 12:22:03 2008 +0000 +++ b/DOCS/man/en/mplayer.1 Mon Jan 07 12:30:15 2008 +0000 @@ -836,6 +836,24 @@ Leads to image distortion! . .TP +.B \-heartbeat-cmd +Command that is executed every 30 seconds during playback via system() - +i.e. using the shell. +.sp 1 +.I NOTE: +MPlayer uses this command without any checking, it is your responsibility +to ensure it does not cause security problems (e.g. make sure to use full +paths if "." is in your path like on Windows). +.sp 1 +This can be "misused" to disable screensavers that do not support the proper +X API for this. +.sp 1 +.I EXAMPLE for gnome screensaver: +mplayer \-heartbeat-cmd "gnome-screensaver-command -p" file +.RE +.PD 1 +. +.TP .B \-identify Shorthand for \-msglevel identify=4. Show file parameters in an easily parseable format.
--- a/cfg-mplayer.h Mon Jan 07 12:22:03 2008 +0000 +++ b/cfg-mplayer.h Mon Jan 07 12:30:15 2008 +0000 @@ -207,6 +207,7 @@ {"stop_xscreensaver", "Use -stop-xscreensaver instead, options with _ have been obsoleted.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, {"fstype", &vo_fstype_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL}, #endif + {"heartbeat-cmd", &heartbeat_cmd, CONF_TYPE_STRING, 0, 0, 0, NULL}, {"mouseinput", &vo_nomouse_input, CONF_TYPE_FLAG, 0, 1, 0, NULL}, {"nomouseinput", &vo_nomouse_input, CONF_TYPE_FLAG,0, 0, 1, NULL},
--- a/mplayer.c Mon Jan 07 12:22:03 2008 +0000 +++ b/mplayer.c Mon Jan 07 12:30:15 2008 +0000 @@ -89,6 +89,8 @@ char * proc_priority=NULL; #endif +char *heartbeat_cmd; + #define ROUND(x) ((int)((x)<0 ? (x)-0.5 : (x)+0.5)) #ifdef HAVE_RTC @@ -3442,6 +3444,14 @@ xscreensaver_heartbeat(); } #endif + if (heartbeat_cmd) { + static unsigned last_heartbeat; + unsigned now = GetTimerMS(); + if (now - last_heartbeat > 30000) { + last_heartbeat = now; + system(heartbeat_cmd); + } + } frame_time_remaining = sleep_until_update(&time_frame, &aq_sleep_time);