Send MOV files as MP4 files

This commit is contained in:
regalijan 2023-10-19 16:50:36 -04:00
parent a02dc67172
commit 20cb94729e
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520
2 changed files with 7 additions and 4 deletions

View File

@ -51,7 +51,7 @@ export default function () {
jpg: "image/jpg",
m4v: "video/x-m4v",
mkv: "video/x-matroska",
mov: "video/quicktime",
mov: "video/mp4",
mp4: "video/mp4",
png: "image/png",
webp: "image/webp",
@ -209,8 +209,11 @@ export default function () {
duplex: supportsRequestStreams ? "half" : undefined,
headers: {
"content-type":
files[i].type ||
fileTypes[files[i].name.split(".").at(-1) as string],
(files[i].name.split(".").at(-1) as string).toLowerCase() ===
"mov"
? "video/mp4"
: files[i].type ||
fileTypes[files[i].name.split(".").at(-1) as string],
},
method: "PUT",
});

View File

@ -29,7 +29,7 @@ export async function GenerateUploadURL(
jpg: "image/jpeg",
m4v: "video/x-m4v",
mkv: "video/x-matroska",
mov: "video/quicktime",
mov: "video/mp4",
mp4: "video/mp4",
png: "image/png",
webp: "image/webp",