]> git.plutz.net Git - serve0/blobdiff - actions/watch.sh
adapted local player to mplayer1, bugfix for location playback
[serve0] / actions / watch.sh
index c198f4a000f851ebb5a1c48c97133ee3747e2340..3398b99271fc240fb2b5ecb074b6b4b1fdcd6529 100755 (executable)
@@ -58,12 +58,21 @@ case "${_COOKIE[watch]}" in
     volume="$(validate "$(cat "${_DATA}/mplayer.volume")" '[1-9]?[0-9]|100' 20)"
     [ \! -p "$fifofile" ] && rm -f "$fifofile" && mkfifo -m 600 "$fifofile"
 
+    debug PLAYURI $playuri
+
     DISPLAY=:0 XDG_RUNTIME_DIR=/run/user/1006 \
-      nohup /usr/bin/mplayer -ao pulse --quiet \
-      --slave --input=file="$fifofile" \
-      --volume="$volume" \
+      nohup /usr/bin/mplayer -ao pulse -quiet \
+      -slave -input file="$fifofile" \
+      -volume "$volume" \
       "$playuri" >/dev/null 2>/dev/null &
 
+    # # MPlayer2:
+    # DISPLAY=:0 XDG_RUNTIME_DIR=/run/user/1006 \
+    #   nohup /usr/bin/mplayer -ao pulse --quiet \
+    #   --slave --input=file="$fifofile" \
+    #   --volume="$volume" \
+    #   "$playuri" >/dev/null 2>/dev/null &
+
     redirect "?p=playctl&${watch_link}"
   ;;
   *) redirect "?p=view&${watch_link}"