X-Git-Url: http://git.plutz.net/?a=blobdiff_plain;f=pages%2Fplayctl.sh;h=591efd6695d89c792edcca1cde960fc3d4f73e82;hb=ece6dc351856b84a276ea6dca4da1af5d56da31b;hp=143c4d952c7f440e03383132e3ad5dfab064aca7;hpb=713dadca483cc306b787fea6b696783b7d3a2c31;p=serve0 diff --git a/pages/playctl.sh b/pages/playctl.sh index 143c4d9..591efd6 100755 --- a/pages/playctl.sh +++ b/pages/playctl.sh @@ -1,6 +1,6 @@ #!/bin/zsh -# Copyright 2014 2016 Paul Hänsch +# Copyright 2014, 2016 Paul Hänsch # # This file is part of Serve0. # @@ -22,18 +22,44 @@ info="${_GET[i]}" location="$(invalidate "${_GET[l]}" '(.*/)?\.\.(/.*)?|' /)" directory="${location%/*}" +statusfile="$_DATA/mplayer.status" +statusfile="/tmp/mplayer.status" -TITLE="$info" - -meta="${_DATA}/meta/$info.meta" [ -n "$info" ] && video="${_DATA}/videos/$info" \ || video="${treeroot%/}/${location#/}" + +meta="${_DATA}/mplayer.meta" tags="$(sed -n '2p' "$meta")" description="$(sed -n '3,$p' "$meta")" -head -n1 "$meta" |read length width height x - -video="videos/$info" -[ -n "$info" ] && video="videos/$info" \ - || video="${location#/}" +head -n1 "$meta" |read length width height TITLE volume=$(validate "$(cat "$_DATA/mplayer.volume")" '[1-9]?[0-9]|100' 20) + +debug VIDEO: $video + +pa_sinks(){ + if which pactl >/dev/null; then + export DISPLAY=":0" + export XDG_RUNTIME_DIR="/run/user/$(id |sed -rn '1s;.*uid=([0-9]+)[^0-9].*;\1;p')" + + pactl list sinks \ + | sed -rn '/Sink #/{:X;N;/Description: /!bX;s;Sink #([0-9]+).+Description: (.*);\1 \2;p}' + fi +} + +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' \ + | while read m; do + [ "$m" != "$previous" ] && printf "%d %d\n" "$(($m * 100 / $length))" "$m" + previous="$m" + done +}