From 903e1a37e7fcd4f5a8e17dd259162bcf524f7abc Mon Sep 17 00:00:00 2001 From: kuhaku Date: Tue, 15 Jun 2021 19:54:10 +0000 Subject: [PATCH] feat(external-player): add cmd argument mapping for VLC player (#1409) Signed-off-by: Randshot --- static/external-player-map.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/static/external-player-map.json b/static/external-player-map.json index fe40a643e..08ef6c334 100644 --- a/static/external-player-map.json +++ b/static/external-player-map.json @@ -19,5 +19,21 @@ "playlistShuffle": "--shuffle", "playlistLoop": "--loop-playlist" } + }, + { + "name": "VLC", + "value": "vlc", + "cmdArguments": { + "defaultExecutable": "vlc", + "supportsYtdlProtocol": false, + "videoUrl": "", + "playlistUrl": null, + "startOffset": "--start-time=", + "playbackRate": "--rate=", + "playlistIndex": null, + "playlistReverse": null, + "playlistShuffle": "--random", + "playlistLoop": "--loop" + } } ]