mirror of
https://github.com/jellyfin/jellyfin-mpv-shim.git
synced 2024-11-23 14:09:57 +00:00
18 lines
593 B
Python
18 lines
593 B
Python
APP_NAME = "jellyfin-mpv-shim"
|
|
USER_APP_NAME = "Jellyfin MPV Shim"
|
|
CLIENT_VERSION = "2.8.0"
|
|
USER_AGENT = "Jellyfin-MPV-Shim/%s" % CLIENT_VERSION
|
|
CAPABILITIES = {
|
|
"PlayableMediaTypes": "Video",
|
|
"SupportsMediaControl": True,
|
|
"SupportedCommands": (
|
|
"MoveUp,MoveDown,MoveLeft,MoveRight,Select,"
|
|
"Back,ToggleFullscreen,"
|
|
"GoHome,GoToSettings,TakeScreenshot,"
|
|
"VolumeUp,VolumeDown,ToggleMute,"
|
|
"SetAudioStreamIndex,SetSubtitleStreamIndex,"
|
|
"Mute,Unmute,SetVolume,DisplayContent,"
|
|
"Play,Playstate,PlayNext,PlayMediaSource"
|
|
),
|
|
}
|