]> git.plutz.net Git - serve0/blobdiff - pages/playctl.sh
styling for pagination links
[serve0] / pages / playctl.sh
index 5fd5411323301fa7960475bc62b7c900f8c1da4a..f8247e02d33cbf1278b96ab7c35ee434929dac6b 100755 (executable)
@@ -19,6 +19,8 @@
 
 . $_EXEC/pages/common.sh
 
+CR="$(printf \\r)"
+
 info="${_GET[i]}"
 location="$(invalidate "${_GET[l]}" '(.*/)?\.\.(/.*)?|' /)"
 directory="${location%/*}"
@@ -39,14 +41,20 @@ tags="$(sed -n '2p' "$meta")"
 description="$(sed -n '3,$p' "$meta")"
 head -n1 "$meta" |read length width height TITLE
 
-volume=$(validate "$(cat "$_DATA/mplayer.volume")" '[1-9]?[0-9]|100' 20)
-
 debug VIDEO: $video
 
 if [ "$_COOKIE[watch]" = raspi ]; then
-  actionuri='//atoemchen/?action=playctl'
+  actionuri="//${RHOST}:${RPORT}/?action=playctl"
+  volume="$({ncat "$RHOST" "$RPORT" <<-EOF
+       GET /?action=playctl&api=volume HTTP/1.0${CR}
+       Host: ${RHOST}${CR}
+       ${CR}
+       EOF
+  } | sed -r '1,/^\r$/d')"
+  volume=$(validate "${volume}" '[1-9]?[0-9]|100' 20)
 else
   actionuri='?action=playctl'
+  volume=$(validate "$(cat "$_DATA/mplayer.volume")" '[1-9]?[0-9]|100' 20)
 fi
 
 pa_sinks(){
@@ -62,16 +70,23 @@ pa_sinks(){
 printf 'Refresh: 1\r\n'
 
 progress(){
-  cr="$(printf \\r)"
-
-  tail --pid=$$ -c100 -f "$statusfile" \
-  | while read -d "$cr" line; do
-    [ "$line" = "BREAK" ] && exit 0
-    printf '%s\n' "$line"
-  done \
-  | sed -urn '1~12s;^.* V: *+([0-9]+)(\.[0-9]+) A-V:.*$;\1;p' \
+  if [ "$_COOKIE[watch]" = raspi ]; then
+    { ncat "$RHOST" "$RPORT" <<-EOF
+       GET /?action=playctl&api=progress HTTP/1.0${CR}
+       Host: ${RHOST}${CR}
+       ${CR}
+       EOF
+    } | sed -ur '1,/^\r$/d'
+  else
+    tail --pid=$$ -c100 -f "$statusfile" \
+    | while read -d "$CR" line; do
+      [ "$line" = "BREAK" ] && exit 0
+      printf '%s\n' "$line"
+    done \
+    | sed -urn '1~12s;^.* V: *+([0-9]+)(\.[0-9]+) A-V:.*$;\1;p'
+  fi \
   | while read m; do
-    [ "$m" != "$previous" ] && printf "%d %d\n" "$(($m * 100 / $length))" "$m"
+    [ "$m" != "$previous" ] && printf "%d %d\n" "$(($m * 100 / ${length:--1}))" "$m"
     previous="$m"
   done
 }