mirror of
https://github.com/kristoferssolo/solorice.git
synced 2026-03-18 08:09:40 +00:00
58 lines
1.1 KiB
Lua
58 lines
1.1 KiB
Lua
--- @since 26.1.22
|
|
|
|
local M = {}
|
|
|
|
M.skip_labels = {
|
|
["Complete name"] = true,
|
|
["CompleteName_Last"] = true,
|
|
["Unique ID"] = true,
|
|
["File size"] = true,
|
|
["Format/Info"] = true,
|
|
["Codec ID/Info"] = true,
|
|
["MD5 of the unencoded content"] = true,
|
|
}
|
|
|
|
M.ENTRY_ACTION = {
|
|
toggle_metadata = "toggle-metadata",
|
|
}
|
|
|
|
M.STATE_KEY = {
|
|
units = "units",
|
|
hide_metadata = "hide_metadata",
|
|
prev_metadata_area = "prev_metadata_area",
|
|
prev_image_height = "prev_image_height",
|
|
last_valid_mediainfo_skip = "last_valid_mediainfo_skip",
|
|
}
|
|
|
|
M.magick_image_mimes = {
|
|
avif = true,
|
|
hei = true,
|
|
heic = true,
|
|
heif = true,
|
|
["heif-sequence"] = true,
|
|
["heic-sequence"] = true,
|
|
jxl = true,
|
|
tiff = true,
|
|
xml = true,
|
|
-- ["svg+xml"] = true,
|
|
["canon-cr2"] = true,
|
|
}
|
|
|
|
M.seekable_mimes = {
|
|
-- NOTE: Adobe illustrator photoshop mimetypes
|
|
["application/postscript"] = true,
|
|
["application/dvb.ait"] = true,
|
|
["application/illustrator"] = true,
|
|
["application/vnd.adobe.illustrator"] = true,
|
|
["image/x-eps"] = true,
|
|
["application/eps"] = true,
|
|
["application/pdf"] = true,
|
|
|
|
["image/adobe.photoshop"] = true,
|
|
}
|
|
|
|
M.suffix = "_mediainfo"
|
|
M.SHELL = os.getenv("SHELL") or ""
|
|
|
|
return M
|