X-Git-Url: https://git.wpitchoune.net/gitweb/?p=mp3tohtml.git;a=blobdiff_plain;f=mp3tohtml%2Fmp3tohtml.py;h=eefe8cedc2f96511dadb9379161b7a4b106cc9e9;hp=db32bdc832f20546ddfa613bb2d819c6071cfd62;hb=02d4e6cb926ebee97f3e6e45a93a0b6c86be2b33;hpb=0367f55bb55d93d2e3f0032c2b8c01472d9dd2d6 diff --git a/mp3tohtml/mp3tohtml.py b/mp3tohtml/mp3tohtml.py index db32bdc..eefe8ce 100755 --- a/mp3tohtml/mp3tohtml.py +++ b/mp3tohtml/mp3tohtml.py @@ -1,16 +1,10 @@ #!/usr/bin/python2 -# Generate an HTML page containing information about MP3s in a -# directory. -# -# Usage: mp3tohtml.py -# -# Last version of this tool can be get from the GIT repository: -# http://git.wpitchoune.net/radio.git -# -# (c) 2016 Jean-Philippe Orsini +# http://wpitchoune.net/mp3tohtml +# Released under the terms of the GPLv2 license. +# (c) 2016 Jean-Philippe Orsini -import argparse; +import argparse import eyeD3 import fnmatch import glob @@ -43,74 +37,26 @@ def fma_copyright_to_html(path, copyright): def copy_header(path): header_path = path + "/header.tpl" - header = open(header_path, "r") - for line in header: - sys.stdout.write(line) + try: + header = open(header_path, "r") + for line in header: + sys.stdout.write(line) + header.close() + except IOError as e: + sys.stderr.write("Failed to read header file " + + header_path + + ": " + e.strerror + "\n") + raise def copy_footer(path): footer_path = path + "/footer.tpl" - footer = open(footer_path, "r") - for line in footer: - sys.stdout.write(line) - -parser = argparse.ArgumentParser(description='Generate an HTML containing information about the MP3 files.') -parser.add_argument('dir', help='The directory containing the MP3 files') -parser.add_argument("--config", help="The directory containing the configuration") - -args = parser.parse_args() - -if (args.config is None): - cfg_dir = os.path.dirname(sys.argv[0]) -else: - cfg_dir = args.config - -copy_header(cfg_dir) - -files = [] -for root, dirnames, filenames in os.walk(args.dir): - for filename in fnmatch.filter(filenames, '*.mp3'): - files.append(os.path.join(root, filename)) - -for f in files: - tag = eyeD3.Tag() - - tag.link(f) - - print("\t") - - print("\t\t" + tag.getArtist().encode("UTF8") + "\n") - print("\t\t" + tag.getAlbum().encode("UTF-8") + "") - print("\t\t" + tag.getTitle().encode("UTF-8") + "") - - comments = tag.getComments() - strComments = "" - for c in comments: - strComments += c.comment - - p = re.compile("URL: (.*)\r\nComments: (.*)\r\nCurators?: (.*)\r\nCopyright: (.*)") - m = p.match(strComments) - - if m is None: - url = "" - curator = "" - copyright = "" - else: - if m.group(2) == "http://freemusicarchive.org/": - strComments = "" - url = "FMA" - else: - strComments = m.group(2) - url = "source" - - curator = m.group(3) - - copyright = fma_copyright_to_html(f, m.group(4)) - - print("\t\t" + url + "") - print("\t\t" + curator + "") - print("\t\t" + copyright + "") - print("\t\t" + strComments + "") - - print("\t") - -copy_footer(cfg_dir) + try: + footer = open(footer_path, "r") + for line in footer: + sys.stdout.write(line) + footer.close() + except IOError as e: + sys.stderr.write("Failed to read footer file " + + footer_path + + ": " + e.strerror + "\n") + raise