mirror of
https://github.com/Syncplay/syncplay
synced 2025-03-05 11:17:32 +00:00
Extend user-defined args first, so mpv --terminal=yes takes precedence (#59)
This commit is contained in:
parent
ae3f871848
commit
8e11ddef46
@ -270,9 +270,9 @@ class MplayerPlayer(BasePlayer):
|
||||
filePath = None
|
||||
else:
|
||||
call.extend([filePath])
|
||||
call.extend(playerController.getStartupArgs(playerPath))
|
||||
if args:
|
||||
call.extend(args)
|
||||
call.extend(playerController.getStartupArgs(playerPath))
|
||||
# At least mpv may output escape sequences which result in syncplay
|
||||
# trying to parse something like
|
||||
# "\x1b[?1l\x1b>ANS_filename=blah.mkv". Work around this by
|
||||
|
Loading…
Reference in New Issue
Block a user