feat: use external player (vlc)

This commit is contained in:
Fredrik Burmester
2024-08-20 21:51:16 +02:00
parent eed4df6a8a
commit cbe01a0012
3 changed files with 45 additions and 15 deletions

View File

@@ -12,6 +12,7 @@ type Settings = {
mediaListCollectionIds?: string[];
searchEngine: "Marlin" | "Jellyfin";
marlinServerUrl?: string;
openInVLC?: boolean;
};
/**
@@ -37,6 +38,7 @@ const loadSettings = async (): Promise<Settings> => {
mediaListCollectionIds: [],
searchEngine: "Jellyfin",
marlinServerUrl: "",
openInVLC: false,
};
};