summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2014-01-01 12:53:40 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2014-01-01 12:53:40 +0100
commit4da70bbab161dc545566f57d2cb611b10c8f4f8d (patch)
tree0fc84b176b9d11402ba3f9f957b7cf7c5513e752 /INSTALL
parent566c6fa4641ea116307cfb5e40d151a104ab1490 (diff)
downloadvdr-4da70bbab161dc545566f57d2cb611b10c8f4f8d.tar.gz
vdr-4da70bbab161dc545566f57d2cb611b10c8f4f8d.tar.bz2
The script given to VDR with the '-r' option is now also called after the recording process has actually started
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL4
1 files changed, 4 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
index 384ba446..2dff5e34 100644
--- a/INSTALL
+++ b/INSTALL
@@ -254,6 +254,7 @@ The program will be called with two or three (in case of "edited") string
parameters. The first parameter is one of
before if this is *before* a recording starts
+ started if this is after a recording has *started*
after if this is *after* a recording has finished
edited if this is after a recording has been *edited*
deleted if this is after a recording has been *deleted*
@@ -279,6 +280,9 @@ case "$1" in
before)
echo "Before recording $2"
;;
+ started)
+ echo "Started recording $2"
+ ;;
after)
echo "After recording $2"
;;