Send MOV files as MP4 files
This commit is contained in:
parent
a02dc67172
commit
20cb94729e
@ -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,7 +209,10 @@ export default function () {
|
||||
duplex: supportsRequestStreams ? "half" : undefined,
|
||||
headers: {
|
||||
"content-type":
|
||||
files[i].type ||
|
||||
(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",
|
||||
|
@ -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",
|
||||
|
Loading…
x
Reference in New Issue
Block a user