Cutinplace.sh

Aus VDR Wiki
(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
(M)
 
(22 dazwischenliegende Versionen von 16 Benutzern werden nicht angezeigt)
Zeile 1: Zeile 1:
 +
Vorschlag für ein einfaches Skript um [[cutinplace]] zu ''starten'', welches über die [[reccmds.conf]] ausgeführt werden kann.
 +
 +
{{Box Datei | [[Struktur|$PATH]]/cutinplace.sh |
 
<pre>
 
<pre>
 
#!/bin/sh
 
#!/bin/sh
 
#
 
#
# cutinplace.sh - v.0.1
+
# cutinplace.sh
 
#
 
#
# add this lines to your reccmds.conf:
+
# add this line to your reccmds.conf:
# folgende zeilen in die reccmds.conf eintragen:
+
# folgende zeile in die reccmds.conf eintragen:
 
#
 
#
# cutinplace (at) : /usr/local/bin/cutinplace.sh -at
+
# cutinplace : /path_to_this_script/cutinplace.sh
# cutinplace      : /usr/local/bin/cutinplace.sh -start
+
  
# CONFIG START
+
which cutinplace >/dev/null 2>&1 || { echo cutinplace $"not found" ... ; exit 1 ; }
  MAX_IN_MB="600" # max size -> cut without at
+
# CONFIG END
+
  
PATH=$PATH:/usr/local/bin
+
MARKS=$(wc -l < "$1/marks.vdr" 2>/dev/null)
 
+
if [ ${MARKS:-0} -lt 2 ] ; then
case "${1}" in
+
    echo $"No editing marks defined" ...
      -at)
+
else
at now <<EOF
+
    if [ -s "${PIDFILE:=$1/cip.pid}" ] ; then
svdrpsend.pl MESG "Editing process started"
+
read PID < "$PIDFILE"
cutinplace "${2}"
+
echo $"Cutinplace process already active" "(pid: $PID)" ...
svdrpsend.pl MESG "Editing process finished"
+
    else
EOF
+
screen -dm sh -c \
;;
+
" \
      -start)
+
    cutinplace \"$1\" &
VAR=$(($(find "${2}" -printf %k+)0))
+
    svdrpsend.pl -p ${VDR_PORT:-2001} MESG \""$"Cutinplace process started"" (pid: \$!) ...\" ; \
test "$((VAR/1024))" -gt "${MAX_IN_MB}" && {
+
    echo \$! > \"$PIDFILE\" ; \
    echo "Record to large ($((VAR / 1024))Mb -gt ${MAX_IN_MB}Mb), use better at..."
+
    wait \$! ; \
    exit 1
+
    rm -f \"$PIDFILE\" ; \
}
+
    svdrpsend.pl -p ${VDR_PORT:-2001} MESG \""$"Cutinplace process finished"" (pid: \$!) ...\" \
cutinplace "${2}"
+
"
;;
+
    fi
esac
+
fi
 
</pre>
 
</pre>
 +
}}
 +
 +
==Quellen==
 +
* [[cutinplace]]
  
[[Kategorie:Scripts]]
+
[[Kategorie:Skripte]]

Aktuelle Version vom 12. Juni 2006, 10:03 Uhr

Vorschlag für ein einfaches Skript um cutinplace zu starten, welches über die reccmds.conf ausgeführt werden kann.

Datei
$PATH/cutinplace.sh
#!/bin/sh
#
# cutinplace.sh
#
# add this line to your reccmds.conf:
# folgende zeile in die reccmds.conf eintragen:
#
# cutinplace : /path_to_this_script/cutinplace.sh

which cutinplace >/dev/null 2>&1 || { echo cutinplace $"not found" ... ; exit 1 ; }

MARKS=$(wc -l < "$1/marks.vdr" 2>/dev/null)
if [ ${MARKS:-0} -lt 2 ] ; then
    echo $"No editing marks defined" ...
else
    if [ -s "${PIDFILE:=$1/cip.pid}" ] ; then
	read PID < "$PIDFILE"
	echo $"Cutinplace process already active" "(pid: $PID)" ...
    else
	screen -dm sh -c \
	" \
	    cutinplace \"$1\" &
	    svdrpsend.pl -p ${VDR_PORT:-2001} MESG \""$"Cutinplace process started"" (pid: \$!) ...\" ; \
	    echo \$! > \"$PIDFILE\" ; \
	    wait \$! ; \
	    rm -f \"$PIDFILE\" ; \
	    svdrpsend.pl -p ${VDR_PORT:-2001} MESG \""$"Cutinplace process finished"" (pid: \$!) ...\" \
	"
    fi
fi


[Bearbeiten] Quellen