]> git.plutz.net Git - serve0/blobdiff - actions/playctl.sh
improved processing of progress bar
[serve0] / actions / playctl.sh
index 2934b90fd2b8be4d868451e8df27bcf49691768c..6dc138f1561611829149b5991a45e3852d0e9490 100755 (executable)
@@ -30,6 +30,7 @@ if [ "${_GET[api]}" = progress ]; then
   cr="$(printf \\r)"
   printf 'Content-Type: text/plain\r\n\r\n'
 
+  read length <${_DATA}/mplayer.meta
   tail --pid=$$ -c100 -f "$statusfile" \
   | while read -d "$cr" line; do
     [ "$line" = "BREAK" ] && exit 0
@@ -37,7 +38,7 @@ if [ "${_GET[api]}" = progress ]; then
   done \
   | sed -urn '1~12s;^.* V: *+([0-9]+)(\.[0-9]+) A-V:.*$;\1;p' \
   | 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
   exit 0