From 51699f78fe40ec97be3f77eecf85aefd4a440efd Mon Sep 17 00:00:00 2001 From: Ricardo Constantino Date: Thu, 11 Jun 2015 20:02:24 +0100 Subject: [PATCH] [mpv] Use --keep-open=always Added in 0.8.0 "always" pauses on EOF instead of proceeding to the next file on the playlist. This can be removed when Syncplay properly supports playlists. --- syncplay/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncplay/constants.py b/syncplay/constants.py index 4df7a96..d00258d 100644 --- a/syncplay/constants.py +++ b/syncplay/constants.py @@ -136,7 +136,7 @@ MPLAYER_SLAVE_ARGS = ['-slave', '--hr-seek=always', '-nomsgcolor', '-msglevel', MPV_SLAVE_ARGS = ['--hr-seek=always', '--quiet', '--af=scaletempo', '--input-terminal=no', '--input-file=/dev/stdin'] MPV_SLAVE_ARGS_NEW = ['--term-playing-msg=\nANS_filename=${filename}\nANS_length=${=length}\nANS_path=${path}\n', '--terminal=yes'] MPV_SLAVE_GUI = ['--force-window', '--idle', '--keep-open'] -MPV_SLAVE_GUI_NEW = ['--profile=pseudo-gui'] +MPV_SLAVE_GUI_NEW = ['--profile=pseudo-gui', '--keep-open=always'] MPV_NEW_VERSION = False VLC_SLAVE_ARGS = ['--extraintf=luaintf', '--lua-intf=syncplay', '--no-quiet', '--no-input-fast-seek', '--play-and-pause', '--start-time=0']