tools: Added imagemagick's identify command for image file types.

This commit is contained in:
Andrew Hamilton 2018-06-02 10:58:05 +10:00
parent 7c2227f209
commit 27d91c6532
2 changed files with 13 additions and 6 deletions

View file

@ -18,15 +18,16 @@ tools_for_extensions = [
[["tar.gz", "tgz"],["tar_gz"]],
[["tar.bz2"], ["tar_bz2"]],
[["a", "so"], ["nm"]],
[["png", "jpg", "gif", "bmp", "ppm", "tiff", "tga"], ["pil", "pil_half"]],
[["png", "jpg", "gif", "bmp", "ppm", "tiff", "tga"], ["identify", "pil",
"pil_half"]],
[["bash", "sh", "dash", "ksh"], ["shellcheck"]],
[["go"], ["gofmt", "go_vet", "golint", "godoc"]],
[["yaml", "yml"], ["yamllint"]],
[["md", "epub", "docx", "odt", "rst"], ["pandoc"]],
[["mkv", "mka", "mks", "ogg", "ogm", "avi", "wav", "mpeg", "mpg", "vob",
"mp4", "mpgv", "mpv", "m1v", "m2v", "mp2", "mp3", "asf", "wma", "wmv",
"qt", "mov", "rm", "rmvb", "ra", "ifo", "ac3", "dts", "aac", "flac",
"aiff", "aifc", "au", "iff"], ["mediainfo"]],
"mp4", "mpgv", "mpv", "m1v", "m2v", "mp2", "mp3", "asf", "wma", "wmv",
"qt", "mov", "rm", "rmvb", "ra", "ifo", "ac3", "dts", "aac", "flac",
"aiff", "aifc", "au", "iff"], ["mediainfo"]],
]
@ -113,6 +114,12 @@ tools_for_extensions = [
url = "https://en.wikipedia.org/wiki/PHP"
command = "php7.2 --syntax-check"
[identify]
dependencies = ["imagemagick"]
url = "http://www.imagemagick.org/script/identify.php"
command = "identify -verbose"
success_status = "normal"
[shellcheck]
dependencies = ["shellcheck"]
url = "shellcheck"