diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2023-10-10 00:02:42 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2023-10-10 00:02:42 +0200 |
commit | 8596dca388e94ddd4a7008e972f864e68f1de99a (patch) | |
tree | c0fc369986be81354db4eb7efdb1178e37ce1a67 | |
parent | b43c2ebbf36277df54a7954741c7a7399afc0130 (diff) |
mime: add ogg
-rw-r--r-- | src/mime-types.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mime-types.scm b/src/mime-types.scm index 198ae8f..20dd228 100644 --- a/src/mime-types.scm +++ b/src/mime-types.scm @@ -87,6 +87,7 @@ ("mp3" . "audio/mpeg") ("mp2" . "audio/mpeg") ("opus" . "audio/opus") + ("oga" . "audio/ogg") ("aif" . "audio/x-aiff") ("aifc" . "audio/x-aiff") ("aiff" . "audio/x-aiff") @@ -149,5 +150,6 @@ ("mov" . "video/quicktime") ("qt" . "video/quicktime") ("webm" . "video/webm") + ("ogv" . "video/ogg") ("avi" . "video/x-msvideo") ("movie" . "video/x-sgi-movie"))) |