1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-06-24 21:25:23 +00:00

Receivers: Fixed supported MIME types

This commit is contained in:
Michael Hollister 2025-05-13 01:15:39 -05:00
parent 269006ffb1
commit c04cc2f9ca

View file

@ -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'
];