X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=planime;h=3dab1dd4c5d4c588bb5e106f9178a691280b4872;hb=9959ad1a146f77fa310329802b567b9132fc15cc;hp=b2b14ddde14f54c4bf4c6a747e9f4f59c0d1091d;hpb=c6fdc541aa45feeae264e7c61c37d018ffd84bca;p=utils.git diff --git a/planime b/planime index b2b14dd..3dab1dd 100755 --- a/planime +++ b/planime @@ -4,8 +4,20 @@ isnum() { grep -xq '[0-9]\+' <<<"$1" } +scorefile() { + if [ "${1##*.}" = mkv ]; then + echo 10 + elif [ "${1##*.}" = ogm ]; then + echo 5 + else + echo 0 + fi +} + findfile() { - local file tail eq eqt m + if [ -n "$debug" ]; then echo "finding base='$1', ep='$2', qual='$3'" >&2; fi + local file tail eq eqt m matches max score + matches=() for file in "$1"*; do tail="${file#$1}" eq="${tail%.*}" @@ -26,28 +38,47 @@ findfile() { fi if [ "$m" = y ]; then if [ "$eqt" = "$3" -o "$eqt" = "($3)" ]; then - echo "$file" - return 0 + matches=("${matches[@]}" "$file") fi fi done - return 1 + if [ ${#matches[@]} -lt 1 ]; then return 1; fi + max= + for m in "${matches[@]}"; do + score="$(scorefile "$m")" + if [ -n "$debug" ]; then echo "found \`$m': score $score" >&2; fi + if [ -z "$max" ] || [ "$score" -gt "$max" ]; then + max="$score" + file="$m" + fi + done + if [ -n "$debug" ]; then echo "using \`$file'" >&2; fi + echo "$file" + return 0 } origargs=("$0" "$@") cmdline=(mplayer -fs -ass) +debug= +unset pretend printfile while [ "${1:0:1}" = - ]; do a="$1" shift case "$a" in -h) - echo "usage: planime [-ht] [-s PAR VAL] [NAME-QUAL] [EP|.] [TYPE-QUAL]" >&2 + echo "usage: planime [-fdhtC] [-A PLAYER-ARGS... ;] [-s PAR VAL] [--] [NAME-QUAL] [EP|.] [TYPE-QUAL]" >&2 exit 0 ;; + -d) + debug=y + ;; -t) cmdline=("${cmdline[@]}" -ao oss:/dev/dsp1) ;; + -C) + pretend=y + ;; -A) while :; do a="$1" @@ -64,6 +95,16 @@ while [ "${1:0:1}" = - ]; do saveval="$1" shift ;; + -f) + printfile=y + ;; + --) + break + ;; + *) + echo "planime: unknown option \`$a'" + exit 1 + ;; esac done @@ -157,6 +198,8 @@ if [ -r "$ifile" ]; then cmdline=("${cmdline[@]}" -delay "$arg") elif [ "$par" = aspect ]; then cmdline=("${cmdline[@]}" -aspect "$arg") + elif [ "$par" = volmod ]; then + cmdline=("${cmdline[@]}" -af volume="$arg") elif [ "$par" = alang ]; then unset alang aid alang="$arg" @@ -186,38 +229,44 @@ elif [ -n "$sid" ]; then cmdline=("${cmdline[@]}" -sid "$sid") fi -if [ "`hostname`" = pc6 ]; then chwp=y; fi +if [ "`hostname`" = pc6 -o "`hostname`" = pc7 -a "$DISPLAY" = :1 ]; then chwp=y; fi -if [ "$chwp" = y ]; then (sleep 2; randomwp) & fi -"${cmdline[@]}" "$file" - -if [ "$nextep" = y ]; then - echo "0. Save and continue (or Space)" - echo "1. Continue without saving" - echo "2. Save and exit (or Enter)" - echo "3. Exit without saving (or any key)" - IFS= read -sn1 c - save=n - cont=n - case "$c" in - 0|" ") - save=y - cont=y - ;; - 1) - cont=y - ;; - 2|"") - save=y - ;; - esac - if [ "$save" = y ]; then - let ep++ - echo "$ep" >nextep - fi - if [ "$cont" = y ]; then - exec "${origargs[@]}" - else - echo "nextep is $ep" +if [ -n "$pretend" ]; then + echo "${cmdline[@]}" "$file" +elif [ -n "$printfile" ]; then + echo "$file" +else + if [ "$chwp" = y ]; then (sleep 2; randomwp) & fi + "${cmdline[@]}" "$file" + + if [ "$nextep" = y ]; then + echo "0. Save and continue (or Space)" + echo "1. Continue without saving" + echo "2. Save and exit (or Enter)" + echo "3. Exit without saving (or any key)" + IFS= read -sn1 c + save=n + cont=n + case "$c" in + 0|" ") + save=y + cont=y + ;; + 1) + cont=y + ;; + 2|"") + save=y + ;; + esac + if [ "$save" = y ]; then + let ep++ + echo "$ep" >nextep + fi + if [ "$cont" = y ]; then + exec "${origargs[@]}" + else + echo "nextep is $ep" + fi fi fi