Skip to content

Commit 85f2dcf

Browse files
committed
normalize bink video to descriptive mime type
1 parent dd52739 commit 85f2dcf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/normalizeMimeType.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ function normalizeMimeType (mime: string) {
44
case "audio/vnd.wave": return "audio/wav";
55
case "image/x-icon": return "image/vnd.microsoft.icon";
66
case "image/qoi": return "image/x-qoi";
7+
case "video/bink": return "video/vnd.radgamettools.bink";
8+
case "video/binka": return "audio/vnd.radgamettools.bink";
79
}
810
return mime;
911
}

0 commit comments

Comments
 (0)