X-Git-Url: http://dolda2000.com/gitweb/?p=utils.git;a=blobdiff_plain;f=planime;h=2fca3261428f12681e8c31030a6e81ed59831183;hp=731a467552457ca8d92547ceb63347728a71ab2b;hb=0c0ef5c73fa675decb4339fc6a858c96d0878996;hpb=529814da44d274cafe5cedf336102fd3649902e1 diff --git a/planime b/planime index 731a467..2fca326 100755 --- a/planime +++ b/planime @@ -34,6 +34,7 @@ findfile() { return 1 } +origargs=("$0" "$@") cmdline=(mplayer -fs) while [ "${1:0:1}" = - ]; do @@ -62,6 +63,9 @@ file= tqual= if [ $# -eq 0 ]; then nextep=y + if [ -r curser ]; then + base="$base $(&2 exit 1 fi -echo "$file" -exit 0 - -if [ ! -r "$ep" ]; then - if [ -z "$qual" ]; then - ep="$(basename "$(pwd)") - ${ep}" - else - ep="$(basename "$(pwd)") ${qual} - ${ep}" - fi - if [ -r "${ep}.ogm" ]; then - ep="${ep}.ogm" +case "${file##*.}" in + ogm) defopts=(-aid 1 -sid 0) - elif [ -r "${ep}.mkv" ]; then - ep="${ep}.mkv" + ;; + mkv) defopts=(-slang eng -alang jpn) - elif [ -r "${ep}.mpg" ]; then - ep="${ep}.mpg" - elif [ -r "${ep}.mp4" ]; then - ep="${ep}.mp4" - elif [ -r "${ep}.avi" ]; then - ep="${ep}.avi" - fi -fi - -if [ ! -r "$ep" ]; then - echo "no such episode: $ep" >&2 - exit 1 -fi + ;; +esac -ifile=".${ep}.info" +ifile=".${file}.info" if [ -n "$savepar" ]; then if [ -r "$ifile" ]; then - egrep -v "^${savepar}:" "$ifile" >"$ifile.new" + egrep -v "^${savepar} " "$ifile" >"$ifile.new" mv -f "$ifile.new" "$ifile" fi - echo "$savepar: $saveval" >>"$ifile" + echo "$savepar $saveval" >>"$ifile" exit 0 fi unset delay if [ -r "$ifile" ]; then - delay="`sed -n 's/delay *: *\([^ ]*\)$/\1/p' <"$ifile"`" - cmdline=("${cmdline[@]}" -delay "$delay") + exec 3<&0 + exec 0<"$ifile" + while read par arg; do + if [ "$par" = delay ]; then + cmdline=("${cmdline[@]}" -delay "$arg") + elif [ "$par" = aspect ]; then + cmdline=("${cmdline[@]}" -aspect "$arg") + fi + done + exec 0<&3 + exec 3<&- else cmdline=("${cmdline[@]}" "${defopts[@]}") fi @@ -153,4 +156,35 @@ fi if [ "`hostname`" = pc6 ]; then chwp=y; fi if [ "$chwp" = y ]; then (sleep 2; randomwp) & fi -"${cmdline[@]}" "$ep" +"${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