Infosatepg.sh

Aus VDR Wiki
(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
(M)
Zeile 1: Zeile 1:
Script von [[infosatepg]].
+
Skript von [[infosatepg]].
  
 
{{Box Datei | $PATH/infosatepg.sh |
 
{{Box Datei | $PATH/infosatepg.sh |
Zeile 68: Zeile 68:
 
}}
 
}}
  
[[Kategorie:Scripts]]
+
[[Kategorie:Skripte]]

Version vom 23. Februar 2006, 06:01 Uhr

Skript von infosatepg.

Datei
$PATH/infosatepg.sh
#!/bin/sh
#
# infosatepg.sh
#
# Required: ps, svdrpsend.pl, infosatepg, tvm2vdr.pl (optional)
#
# add this lines to your commands.conf:
# folgende zeilen in die commands.conf eintragen:
#
# Run infosatepg               : echo "/path_to_this_script/infosatepg.sh" | at now
# Run infosatepg + tvmovie2vdr : echo "/path_to_this_script/infosatepg.sh -tvmovie2vdr" | at now
# View logfile                 : /path_to_this_script/infosatepg.sh -log
#
# Edit the config.pl:
#
# - our $infosaturl="/video/received_data";
# + our $infosaturl="/usr/local/cache/infosatepg";

# CONFIG START
  INFOSAT_OPT="-v"                           # options
  CHANNEL="VIVA"                             # which channel, e.g: <NUM> or <NAME>
  SHOWSTATUS="1"                             # show status (1=true/0=false)
  CLEANUP="10"                               # cleanup files (older n*24 hours ago)
  INFOSAT_OUT="/usr/local/cache/infosatepg"  # store infosatepg in
  INFOSAT_LOG="/var/log/vdr/infosatepg.log"  # logfile
# CONFIG END

PATH=/usr/local/bin:$PATH:$PREFIX/bin

case $1 in
    -log)
	if [ -s $INFOSAT_LOG ] ; then
	    tail -n 10 $INFOSAT_LOG | tr -d '#_'
	else
	    echo "$INFOSAT_LOG not exist or empty..."
	fi
	;;
    *)
	if [ -n "$(pidof infosatepg)" ] ; then
	    svdrpsend.pl -p ${VDR_PORT:-2001} MESG "infosatepg is already running..."
	else
	    if [ "$(svdrpsend.pl -p ${VDR_PORT:-2001} CHAN $CHANNEL | grep -c '^250.*')" -eq 0 ] ; then
		svdrpsend.pl -p ${VDR_PORT:-2001} MESG "switch to $CHANNEL failed..."
	    else
		mkdir -p $INFOSAT_OUT
                find $INFOSAT_OUT -follow -type f -mtime +${CLEANUP} -exec rm \{} \;
		infosatepg $INFOSAT_OPT -o $INFOSAT_OUT > $INFOSAT_LOG &
		PID=$!
		if [ "$SHOWSTATUS" -eq 1 ] ; then
		    sh -c "until ! ps -p $PID; do sleep 30s; svdrpsend.pl -p ${VDR_PORT:-2001} MESG \"\$(grep -s [0-9]% $INFOSAT_LOG | tail -n 1)\"; done" &
		fi
		wait $PID; kill $!
		svdrpsend.pl -p ${VDR_PORT:-2001} MESG "$(tail -n 1 $INFOSAT_LOG)..."
		if [ -n "$1" ] ; then
                    cd ${SOURCEDIR:?}/tvmovie2vdr
		    ./tvm2vdr.pl
		fi
	    fi
	fi \
	>/dev/null 2>&1
	;;
esac