Add support for memes from the 90s

MIMEs test by @illnesse (#83)
old-stable24
Varun Patil 2022-10-19 16:06:32 -07:00
parent 6f94d1985f
commit 005d590ac5
2 changed files with 14 additions and 6 deletions

View File

@ -43,20 +43,20 @@ class Application extends App implements IBootstrap
'image/heic',
'image/png',
'image/tiff',
// 'image/gif', // too rarely used for photos
'image/gif',
'image/bmp',
// 'image/x-xbitmap', // too rarely used for photos
// 'image/bmp', // too rarely used for photos
// 'image/svg+xml', // too rarely used for photos
];
public const VIDEO_MIMES = [
'video/mpeg',
// 'video/ogg', // too rarely used for photos
// 'video/webm', // too rarely used for photos
'video/webm',
'video/mp4',
// 'video/x-m4v', // too rarely used for photos
'video/quicktime',
'video/x-matroska',
// 'video/x-m4v', // too rarely used for photos
// 'video/ogg', // too rarely used for photos
];
public function __construct()

View File

@ -21,10 +21,18 @@ const props = `
<d:resourcetype />`;
const IMAGE_MIME_TYPES = [
'image/png',
'image/jpeg',
'image/heic',
'image/png',
'image/tiff',
'image/heic',
'image/gif',
'image/bmp',
'video/mpeg',
'video/webm',
'video/mp4',
'video/quicktime',
'video/x-matroska',
];
const GET_FILE_CHUNK_SIZE = 50;