feat(video): add MIME types for mp4/webm/mov/avi/mkv

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-01 21:59:06 +02:00
co-authored by Claude Sonnet 5
parent 913dbac691
commit 9c1f857398
2 changed files with 92 additions and 0 deletions
+5
View File
@@ -43,6 +43,11 @@ const OUTPUT_MIME_TYPES = {
flac: 'audio/flac',
aac: 'audio/aac',
m4a: 'audio/x-m4a',
mp4: 'video/mp4',
webm: 'video/webm',
mov: 'video/quicktime',
avi: 'video/x-msvideo',
mkv: 'video/x-matroska',
};
export async function detectInputMime(filePath) {