From 1d6f662de3d7f6f6717f80476665d9aacc02b995 Mon Sep 17 00:00:00 2001 From: jeidnx Date: Mon, 4 Aug 2025 14:30:37 +0200 Subject: [PATCH] feat: use dash manifest when available --- src/components/VideoPlayer.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/VideoPlayer.vue b/src/components/VideoPlayer.vue index cce66290..8a5624c6 100644 --- a/src/components/VideoPlayer.vue +++ b/src/components/VideoPlayer.vue @@ -377,6 +377,9 @@ export default { return response.headers.get("Content-Type"); }); mime = contentType; + } else if (this.video.dash && !this.getPreferenceBoolean("preferHls", false)) { + uri = this.video.dash; + mime = "application/dash+xml"; } else if (this.video.hls) { uri = this.video.hls; mime = "application/x-mpegURL";