From c04cc2f9cae45664449c5f6c138c9a763f49bb8d Mon Sep 17 00:00:00 2001 From: Michael Hollister Date: Tue, 13 May 2025 01:15:39 -0500 Subject: [PATCH] Receivers: Fixed supported MIME types --- receivers/common/web/MimeTypes.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/receivers/common/web/MimeTypes.ts b/receivers/common/web/MimeTypes.ts index bad3506..47b09f1 100644 --- a/receivers/common/web/MimeTypes.ts +++ b/receivers/common/web/MimeTypes.ts @@ -7,20 +7,19 @@ export const streamingMediaTypes = [ export const supportedPlayerTypes = streamingMediaTypes.concat([ 'audio/aac', - 'audio/midi', - 'audio/x-midi', + 'audio/flac', 'audio/mpeg', + 'audio/mp4', 'audio/ogg', 'audio/wav', 'audio/webm', 'audio/3gpp', 'audio/3gpp2', - 'video/x-msvideo', 'video/mp4', 'video/mpeg', 'video/ogg', - 'video/mp2t', 'video/webm', + 'video/x-matroska', 'video/3gpp', 'video/3gpp2' ]); @@ -34,7 +33,6 @@ export const supportedImageTypes = [ 'image/jpeg', 'image/png', 'image/svg+xml', - 'image/tiff', 'image/vnd.microsoft.icon', 'image/webp' ];