Removed mp3info tool, because it doesn't handle new ID3 tags.
This commit is contained in:
parent
5dc0aaaf5d
commit
d42a285c08
1 changed files with 0 additions and 8 deletions
8
tools.py
8
tools.py
|
|
@ -469,13 +469,6 @@ def readelf(path):
|
||||||
readelf.dependencies = {"binutils"}
|
readelf.dependencies = {"binutils"}
|
||||||
|
|
||||||
|
|
||||||
def mp3info(path):
|
|
||||||
stdout, *rest = _do_command(["mp3info", "-x", path])
|
|
||||||
source_widget = fill3.Text(stdout)
|
|
||||||
return Status.normal, source_widget
|
|
||||||
mp3info.dependencies = ["mp3info"]
|
|
||||||
|
|
||||||
|
|
||||||
def unzip(path):
|
def unzip(path):
|
||||||
return _run_command(["unzip", "-l", path], Status.normal)
|
return _run_command(["unzip", "-l", path], Status.normal)
|
||||||
unzip.dependencies = {"unzip"}
|
unzip.dependencies = {"unzip"}
|
||||||
|
|
@ -581,7 +574,6 @@ def tools_for_extension():
|
||||||
"c": [splint, uncrustify],
|
"c": [splint, uncrustify],
|
||||||
"h": [splint, uncrustify],
|
"h": [splint, uncrustify],
|
||||||
"o": [objdump_headers, objdump_disassemble, readelf],
|
"o": [objdump_headers, objdump_disassemble, readelf],
|
||||||
"mp3": [mp3info],
|
|
||||||
"zip": [unzip],
|
"zip": [unzip],
|
||||||
"tar.gz": [tar_gz],
|
"tar.gz": [tar_gz],
|
||||||
"tgz": [tar_gz],
|
"tgz": [tar_gz],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue