feat(external-player): add cmd argument mapping for VLC player (#1409)

Signed-off-by: Randshot <randshot@norealm.xyz>
This commit is contained in:
kuhaku 2021-06-15 19:54:10 +00:00 committed by GitHub
parent 6d2b1f3632
commit 903e1a37e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

View File

@ -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"
}
}
]