X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=planime;h=dfb8d64ad4293068c4d7ef641b2b9a1180ff3987;hb=9fc0aa3b64b75da6ea44b8cba44c72f253fee6d5;hp=60549e95a2489e9c9b7cdbbdcd7a94d4fe5f35e5;hpb=5f7e91433d5fea086080b9c7891abad6ed8025b7;p=utils.git diff --git a/planime b/planime index 60549e9..dfb8d64 100755 --- a/planime +++ b/planime @@ -4,8 +4,19 @@ 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 + local file tail eq eqt m matches max score + matches=() for file in "$1"*; do tail="${file#$1}" eq="${tail%.*}" @@ -26,28 +37,41 @@ 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 [ -z "$max" ] || [ "$score" -gt "$max" ]; then + max="$score" + file="$m" + fi + done + echo "$file" + return 0 } origargs=("$0" "$@") -cmdline=(mplayer -fs) +cmdline=(mplayer -fs -ass) +unset pretend 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 [-htC] [-s PAR VAL] [NAME-QUAL] [EP|.] [TYPE-QUAL]" >&2 exit 0 ;; -t) cmdline=("${cmdline[@]}" -ao oss:/dev/dsp1) ;; + -C) + pretend=y + ;; -A) while :; do a="$1" @@ -127,10 +151,12 @@ fi case "${file##*.}" in ogm) - defopts=(-aid 1 -sid 0) + aid=1 + sid=0 ;; mkv) - defopts=(-slang eng -alang jpn) + alang=jpn + slang=eng ;; esac @@ -155,46 +181,73 @@ 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" + elif [ "$par" = aid ]; then + unset alang aid + aid="$arg" + elif [ "$par" = slang ]; then + unset slang sid + slang="$arg" + elif [ "$par" = sid ]; then + unset slang sid + sid="$arg" fi done exec 0<&3 exec 3<&- -else - cmdline=("${cmdline[@]}" "${defopts[@]}") fi -if [ "`hostname`" = pc6 ]; then chwp=y; fi +if [ -n "$alang" ]; then + cmdline=("${cmdline[@]}" -alang "$alang") +elif [ -n "$aid" ]; then + cmdline=("${cmdline[@]}" -aid "$aid") +fi +if [ -n "$slang" ]; then + cmdline=("${cmdline[@]}" -slang "$slang") +elif [ -n "$sid" ]; then + cmdline=("${cmdline[@]}" -sid "$sid") +fi -if [ "$chwp" = y ]; then (sleep 2; randomwp) & fi -"${cmdline[@]}" "$file" +if [ "`hostname`" = pc6 -o "`hostname`" = pc7 -a "$DISPLAY" = :1 ]; then chwp=y; fi -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" +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