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";