X-Git-Url: http://git.plutz.net/?p=serve0;a=blobdiff_plain;f=actions%2Fplayctl.sh;h=6dc138f1561611829149b5991a45e3852d0e9490;hp=2934b90fd2b8be4d868451e8df27bcf49691768c;hb=e5267e1298f4ffec140c5b3ef43be36079e63c3f;hpb=ff8b54fea63a05cceab0a2f834f22b0db92e8bdf diff --git a/actions/playctl.sh b/actions/playctl.sh index 2934b90..6dc138f 100755 --- a/actions/playctl.sh +++ b/actions/playctl.sh @@ -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