From 6c4c1575476243cbb3a035d8cc1955103c349c76 Mon Sep 17 00:00:00 2001 From: Gabriel Fair <2096785+gabefair@users.noreply.github.com> Date: Fri, 18 Oct 2024 16:23:55 -0400 Subject: [PATCH] Add mpeg video support #2423 --- ts/types/MIME.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ts/types/MIME.ts b/ts/types/MIME.ts index 674579feab..166700de73 100644 --- a/ts/types/MIME.ts +++ b/ts/types/MIME.ts @@ -25,6 +25,7 @@ export const IMAGE_WEBP = stringToMIMEType('image/webp'); export const IMAGE_ICO = stringToMIMEType('image/x-icon'); export const IMAGE_BMP = stringToMIMEType('image/bmp'); export const VIDEO_MP4 = stringToMIMEType('video/mp4'); +export const VIDEO_MPEG = stringToMIMEType('video/mpeg'); export const VIDEO_QUICKTIME = stringToMIMEType('video/quicktime'); export const LONG_MESSAGE = stringToMIMEType('text/x-signal-plain'); export const TEXT_ATTACHMENT = stringToMIMEType('text/x-signal-story');