tools: Add isoinfo for iso image files.
This commit is contained in:
parent
dc89090137
commit
884046e4c8
2 changed files with 9 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ then to run:
|
|||
|
||||
### Tools
|
||||
|
||||
Extensions(93) | Tools(60)
|
||||
Extensions(94) | Tools(61)
|
||||
----------:| -----
|
||||
.* | [contents](http://pygments.org/) • metadata • [git_blame](https://git-scm.com/docs/git-blame) • [git_log](https://git-scm.com/docs/git-log)
|
||||
.py | [python_syntax](https://en.wikipedia.org/wiki/Python_syntax_and_semantics) • [python_unittests](https://docs.python.org/3/library/unittest.html) • [pydoc](https://docs.python.org/3/library/pydoc.html) • [mypy](package) • [python_coverage](http://nedbatchelder.com/code/coverage/) • [pycodestyle](https://pypi.python.org/pypi/pycodestyle) • [pydocstyle](http://pydocstyle.readthedocs.org/) • [pyflakes](https://launchpad.net/pyflakes) • [pylint](http://www.pylint.org/) • [python_gut](https://github.com/ahamilton/eris/blob/master/gut.py) • [python_modulefinder](https://docs.python.org/3/library/modulefinder.html) • [dis](https://docs.python.org/3/library/dis.html) • [python_mccabe](https://github.com/flintwork/mccabe) • [bandit](https://wiki.openstack.org/wiki/Security/Projects/Bandit)
|
||||
|
|
@ -55,3 +55,4 @@ Extensions(93) | Tools(60)
|
|||
.rpm | [rpm](http://rpm.org/)
|
||||
.png .jpg .gif .bmp .tif .tiff .tga | [mediainfo](https://mediaarea.net/MediaInfo) • [pil](http://python-pillow.github.io/)
|
||||
.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 .flv .srt .ssa .ass .sami | [mediainfo](https://mediaarea.net/MediaInfo)
|
||||
.iso | [isoinfo](https://manpages.debian.org/jessie/genisoimage/isoinfo.1.en.html)
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ tools_for_extensions = [
|
|||
"qt", "mov", "rm", "rmvb", "ra", "ifo", "ac3", "dts", "aac", "flac",
|
||||
"aiff", "aifc", "au", "iff", "flv", "srt", "ssa", "ass", "sami"],
|
||||
["mediainfo"]],
|
||||
[["iso"], ["isoinfo"]],
|
||||
]
|
||||
|
||||
[git_blame]
|
||||
|
|
@ -242,3 +243,9 @@ tools_for_extensions = [
|
|||
url = "mediainfo"
|
||||
command = "mediainfo"
|
||||
success_status = "normal"
|
||||
|
||||
[isoinfo]
|
||||
dependencies = ["genisoimage"]
|
||||
url = "https://manpages.debian.org/jessie/genisoimage/isoinfo.1.en.html"
|
||||
command = "isoinfo -l -i"
|
||||
success_status = "normal"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue