From 56520f3f6330fe8a521bc95cb450afe17618c448 Mon Sep 17 00:00:00 2001 From: Matthew Date: Sat, 1 Apr 2017 11:36:20 +0100 Subject: [PATCH] Fix MIME Type For MKV - The correct MIME type for MKV files is "video/x-matroska" as per https://matroska.org/technical/specs/notes.html . --- server/Types/DlnaMaps.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/Types/DlnaMaps.cs b/server/Types/DlnaMaps.cs index edb13d70..0b0e4561 100644 --- a/server/Types/DlnaMaps.cs +++ b/server/Types/DlnaMaps.cs @@ -101,7 +101,7 @@ public static class DlnaMaps {DlnaMime.VideoAVC, "video/mp4"}, {DlnaMime.VideoAVI, "video/avi"}, {DlnaMime.VideoFLV, "video/flv"}, - {DlnaMime.VideoMKV, "video/x-mkv"}, + {DlnaMime.VideoMKV, "video/x-matroska"}, {DlnaMime.VideoMPEG, "video/mpeg"}, {DlnaMime.VideoOGV, "video/ogg"}, {DlnaMime.VideoWMV, "video/x-ms-wmv"}