Installscript-recording-cmds
Aus VDR Wiki
Version vom 22. Oktober 2005, 17:50 Uhr von 87.129.137.89 (Diskussion)
Beschreibung
In ../admin/recording-cmds befinden sich Scripte, welche vor / nach / editieren einer Aufnahme ausgeführt werden.
Im Beispiel wird der Werberfilter noad aufgerufen.
Das ganze kann im admin-plugin eingestellt werden. (0 = inactiv, 1 = activ, 2 = online mode)
{after,before}-noad.run
START="0" # 0 = inactiv / 1 = activ / 2 = online mode ENTRY=$"0,2:Noad (0=off,1=on,2=online mode)" # eintrag für das admin-plugin CHECK=$(which noad) # zum test -> ob vorhanden...
#!/bin/sh # # example script (../../scripts/rwrapper.sh -> $0) START="0" ENTRY=$"0,2:Noad (0=off,1=on,2=online mode)" CHECK=$(which noad) # set the online-mode here # 1 means online for live-recording only # 2 means online for every recording ONLINEMODE="--online=1" # set additional args for every call here here ADDOPTS="--ac3 --overlap --jumplogo --comments --statisticfile=/var/log/vdr/noad.log" case $0 in *before-*) case $START in 2) noad $1 "$2" $ONLINEMODE $ADDOPTS ;; esac ;; *after-*) case $START in 1) noad $1 "$2" $ADDOPTS ;; 2) noad $1 "$2" $ONLINEMODE $ADDOPTS ;; esac ;; esac