mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-12-26 09:13:38 +00:00
Merge pull request 'xs_mime.h: Add various mimetypes for audios & videos' (#63) from yonle/snac2:master into master
Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/63
This commit is contained in:
commit
eb7bee953b
1 changed files with 17 additions and 0 deletions
17
xs_mime.h
17
xs_mime.h
|
@ -19,6 +19,23 @@ struct _mime_info {
|
|||
{ "image/jpeg", ".jpg" },
|
||||
{ "image/png", ".png" },
|
||||
{ "image/webp", ".webp" },
|
||||
{ "video/mp4", ".mp4"},
|
||||
{ "video/mp4", ".mpg4"},
|
||||
{ "video/mp4", ".m4v"},
|
||||
{ "video/webm", ".webm"},
|
||||
{ "video/quicktime", ".mov"},
|
||||
{ "video/3gpp", ".3gp"},
|
||||
{ "video/ogg", ".ogv"},
|
||||
{ "video/flv", ".flv"},
|
||||
{ "audio/mp3", ".mp3"},
|
||||
{ "audio/ogg", ".ogg"},
|
||||
{ "audio/ogg", ".oga"},
|
||||
{ "audio/opus", ".opus"},
|
||||
{ "audio/flac", ".flac"},
|
||||
{ "audio/wav", ".wav"},
|
||||
{ "audio/wma", ".wma"},
|
||||
{ "audio/aac", ".aac"},
|
||||
{ "audio/aac", ".m4a"},
|
||||
{ "text/css", ".css" },
|
||||
{ "text/html", ".html" },
|
||||
{ "text/plain", ".txt" },
|
||||
|
|
Loading…
Reference in a new issue