]> git.plutz.net Git - serve0/blobdiff - pages/playctl.sh
show time in progress bar
[serve0] / pages / playctl.sh
index ad6ea24e0b81955f912fb62f86d30f19aae75bc4..11507803019f8d916d1e500ce772bc5b91dade49 100755 (executable)
 info="${_GET[i]}"
 location="$(invalidate "${_GET[l]}" '(.*/)?\.\.(/.*)?|' /)"
 directory="${location%/*}"
+statusfile="$_DATA/mplayer.status"
 
 TITLE="$info"
 
-meta="${_DATA}/meta/$info.meta"
-[ -n "$info" ] && video="${_DATA}/videos/$info" \
-               || video="${treeroot%/}/${location#/}"
-tags="$(sed -n '2p' "$meta")"
-description="$(sed -n '3,$p' "$meta")"
-length=0; width=0; height=0;
-
-video="videos/$info"
-[ -n "$info" ] && video="videos/$info" \
-               || video="${location#/}"
+if [ -n "$info" ]; then
+  video="${_DATA}/videos/$info"
+  meta="${_DATA}/meta/$info.meta"
+  tags="$(sed -n '2p' "$meta")"
+  description="$(sed -n '3,$p' "$meta")"
+  head -n1 "$meta" |read length width height x
+else
+  video="${treeroot%/}/${location#/}"
+  meta=''; tags=''; length=0; width=0; height=0;
+  description=0
+fi
 
 volume=$(validate "$(cat "$_DATA/mplayer.volume")" '[1-9]?[0-9]|100' 20)
+
+debug VIDEO: $video
+
+progress(){
+  tail --pid=$$ -f "$statusfile" \
+  | tr '\r' '\n' \
+  | sed -urn '1~5s;^.* V: +([0-9]+)(\.[0-9]+) A-V:.*$;\1;p' \
+  | while read m; do
+    printf "%d %d:%02d\n" "$(($m * 100 / $length))" "$(($m / 60))" "$(($m % 60))"
+  done \
+  | while read n; do
+    [ "$n" != "$previous" ] && printf "%s\n" "$n"
+    previous="$n"
+  done
+}