From e144dc55dcc75ff85b8a5bedce786ddbaaff752d Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Wed, 17 Aug 2022 22:50:31 +0000 Subject: [PATCH] desktop-client: Support adding parameters as not supported by mpvctl --- desktop-client/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop-client/app.py b/desktop-client/app.py index d1004b6..a45e76e 100755 --- a/desktop-client/app.py +++ b/desktop-client/app.py @@ -15,7 +15,7 @@ def cmd_player_play(video_uri: str, start: Optional[str] = None, speed: Optional str(Path("~/bin/mpvctl").expanduser()), "add", video_uri, - f"start={start}" if start is not None else None + "," + f"speed={speed}" if speed is not None else None, + #f"start={start}" if start is not None else None + "," + f"speed={speed}" if speed is not None else None, ] if e is not None], stdin = subprocess.DEVNULL, stdout = subprocess.DEVNULL,