Skip to main content

auto_thumbnail/
types.rs

1pub const IMAGE_MIME_TYPES: &[&str] = &[
2    "image/jpeg",
3    "image/png",
4    "image/gif",
5    "image/bmp",
6    "image/tiff",
7    "image/webp",
8    "image/x-tga",
9];
10
11pub const VIDEO_MIME_TYPES: &[&str] = &[
12    "video/mp4",
13    "video/webm",
14    "video/mpeg",
15    "video/quicktime",
16    "video/theora",
17    "video/x-flv",
18    "video/x-ms-asf",
19    "video/x-msvideo",
20    "application/x-matroska",
21    "application/x-shockwave-flash",
22    "video/3gpp",
23    "video/3gpp2",
24];
25
26pub const PDF_MIME_TYPES: &[&str] = &["application/pdf"];