Cutinplace.sh

Aus VDR Wiki
(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
Zeile 1: Zeile 1:
#!/bin/sh
+
<pre>
#
+
#!/bin/sh
# cutinplace.sh - v.0.2
+
#
#
+
# cutinplace.sh - v.0.2
# add this lines to your [[reccmds.conf]]:
+
#
# folgende zeilen in die [[reccmds.conf]] eintragen:
+
# Requires : at, cutinplace
#
+
#
# cutinplace (at) : /usr/local/bin/cutinplace.sh -at
+
# add this lines to your reccmds.conf:
# cutinplace      : /usr/local/bin/cutinplace.sh -start
+
# folgende zeilen in die reccmds.conf eintragen:
#
+
#
# history
+
# cutinplace (at) : /usr/local/bin/cutinplace.sh -at
# --------
+
# cutinplace      : /usr/local/bin/cutinplace.sh -start
# 20041214,ronny: added maxvideofilesize check
+
 
+
# CONFIG START
# CONFIG START
+
  MAX_IN_MB="600"  # max size -> cut without at
  MAX_IN_MB="600"  # max size -> cut without at
+
  MESSAGE="You need to set the Maximum recording size to 100MB or something small anyway in Recordings menu to fully enjoy faster cutting times."
  MESSAGE="You need to set the Maximum recording size to 100MB or something small anyway in Recordings menu to fully enjoy faster cutting times."
+
# CONFIG END
# CONFIG END
+
 
+
PATH=$PATH:/usr/local/bin
PATH=$PATH:/usr/local/bin
+
 
+
MAXFILESIZE=`grep -s ^MaxVideoFileSize $VDR_CONFIG/setup.conf | cut -d' ' -f3`
MAXFILESIZE=`grep -s ^MaxVideoFileSize $VDR_CONFIG/setup.conf | cut -d' ' -f3`
+
VAR=${MAXFILESIZE##*[^0-9]*}
VAR=${MAXFILESIZE##*[^0-9]*}
+
 
+
eval ${VAR:+test $MAXFILESIZE -gt 100 && echo $MESSAGE}
eval ${VAR:+test $MAXFILESIZE -gt 100 && echo $MESSAGE}
+
 
+
case "$1" in
case "$1" in
+
      -at)
      -at)
+
at now <<EOF
at now <<EOF
+
svdrpsend.pl MESG "Editing process started"
svdrpsend.pl MESG "Editing process started"
+
cutinplace "$2"
cutinplace "$2"
+
svdrpsend.pl MESG "Editing process finished"
svdrpsend.pl MESG "Editing process finished"
+
EOF
EOF
+
;;
        ;;
+
      -start)
      -start)
+
VAR=$(($(find "$2" -printf %k+)0))
        VAR=$(($(find "$2" -printf %k+)0))
+
if [ "$((VAR/1024))" -gt "$MAX_IN_MB" ] ; then
        if [ "$((VAR/1024))" -gt "$MAX_IN_MB" ] ; then
+
    echo "Record to large ($((VAR/1024))Mb -gt ${MAX_IN_MB}Mb), use better at..."
            echo "Record to large ($((VAR/1024))Mb -gt ${MAX_IN_MB}Mb), use better at..."
+
else
        else
+
    cutinplace "$2"
            cutinplace "$2"
+
fi
        fi
+
;;
        ;;
+
esac
esac
+
</pre>
  
 
[[Kategorie:Scripts]]
 
[[Kategorie:Scripts]]

Version vom 4. März 2005, 12:25 Uhr

#!/bin/sh
#
# cutinplace.sh - v.0.2
#
# Requires : at, cutinplace
#
# add this lines to your reccmds.conf:
# folgende zeilen in die reccmds.conf eintragen:
#
# cutinplace (at) : /usr/local/bin/cutinplace.sh -at
# cutinplace      : /usr/local/bin/cutinplace.sh -start

# CONFIG START
  MAX_IN_MB="600"  # max size -> cut without at
  MESSAGE="You need to set the Maximum recording size to 100MB or something small anyway in Recordings menu to fully enjoy faster cutting times."
# CONFIG END

PATH=$PATH:/usr/local/bin

MAXFILESIZE=`grep -s ^MaxVideoFileSize $VDR_CONFIG/setup.conf | cut -d' ' -f3`
VAR=${MAXFILESIZE##*[^0-9]*}

eval ${VAR:+test $MAXFILESIZE -gt 100 && echo $MESSAGE}

case "$1" in
      -at)
at now <<EOF
svdrpsend.pl MESG "Editing process started"
cutinplace "$2"
svdrpsend.pl MESG "Editing process finished"
EOF
	;;
      -start)
	VAR=$(($(find "$2" -printf %k+)0))
	if [ "$((VAR/1024))" -gt "$MAX_IN_MB" ] ; then
	    echo "Record to large ($((VAR/1024))Mb -gt ${MAX_IN_MB}Mb), use better at..."
	else
	    cutinplace "$2"
	fi
	;;
esac