Implement Safari video startup fixes and range streaming support

This commit is contained in:
2026-05-21 04:06:44 +00:00
parent 2e9928a411
commit eeed9f3ef7
20 changed files with 1015 additions and 334 deletions
+3
View File
@@ -61,6 +61,7 @@ export interface Movie {
cover_path: string | null;
backdrop_path: string | null;
showreel_images: string[] | null;
showreel_source_sets: string[][] | null;
torrents: { [key: string]: Torrent };
}
@@ -74,6 +75,7 @@ export interface Episode {
rating: number | null;
director: string | null;
reel_image: string | null;
reel_sources: string[] | null;
torrents: { [key: string]: Torrent };
}
@@ -144,6 +146,7 @@ export interface MediaItem {
year?: number | null;
cover_path: string | null;
showreel_images?: string[] | null;
showreel_source_sets?: string[][] | null;
type: MediaType;
resolution?: string | null;
data: Movie | Series | EpisodeWithSeries;