X-Git-Url: http://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=mp3tohtml.py;h=9aa51acf71499d1d63b38216592a5e105f053baa;hb=774f3639eef9683033628b58e7a9fd90a4536725;hp=370cb1fbb2a3eaf3cf139da7b58f53ea9f52aac4;hpb=3d882ae64a2da3b3c64bce895de02dee3a9541d8;p=radio.git diff --git a/mp3tohtml.py b/mp3tohtml.py index 370cb1f..9aa51ac 100755 --- a/mp3tohtml.py +++ b/mp3tohtml.py @@ -10,13 +10,18 @@ # # (c) 2016 Jean-Philippe Orsini +import argparse; import eyeD3 import glob import os.path import re import sys -def fma_copyright_to_html(copyright): +def fma_copyright_to_html(path, copyright): + if copyright == "": + sys.stderr.write(path + ": no FMA copyright.\n") + return "" + p = re.compile("(.*): (.*)") m = p.match(copyright) if m is not None: @@ -24,46 +29,42 @@ def fma_copyright_to_html(copyright): name = name.replace("Creative Commons", "CC") name = name.replace("Attribution", "BY") name = name.replace("NonCommercial", "NC") + name = name.replace("Noncommercial", "NC") name = name.replace("NoDerivatives", "ND") name = name.replace("ShareAlike", "SA") + name = name.replace("Share Alike", "SA") + name = name.replace("United States", "US") return "" + name + "" else: + sys.stderr.write(path + ": invalid FMA copyright: " + + copyright + ".\n"); return copyright -if len(sys.argv) != 2: - sys.stderr.write("Usage: mp3tohtml.py \n") - exit(1) +def copy_header(path): + header_path = os.path.dirname(path) + "/header.tpl" + header = open(header_path, "r") + for line in header: + sys.stdout.write(line) + +parser = argparse.ArgumentParser(description='Generate an HTLM containing information about the MP3 files.') +parser.add_argument('dir', help='The directory containing the MP3 files') + +args = parser.parse_args() -header_path = os.path.dirname(sys.argv[0]) + "/header.tpl" -header = open(header_path, "r") -for line in header: - sys.stdout.write(line) +copy_header(sys.argv[0]) -files = glob.glob(sys.argv[1] + "/**/*mp3") +files = glob.iglob(args.dir + "/**/*mp3") for f in files: tag = eyeD3.Tag() tag.link(f) - print "\t" - - try: - artist = tag.getArtist() - print "\t\t" + artist + "" - except UnicodeEncodeError: - print "\t\t" - - try: - print "\t\t" + tag.getAlbum() + "" - except UnicodeEncodeError: - print "\t\t" - - try: - print "\t\t" + tag.getTitle() + "" - except UnicodeEncodeError: - print "\t\t" + 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 = "" @@ -87,19 +88,19 @@ for f in files: curator = m.group(3) - copyright = fma_copyright_to_html(m.group(4)) + 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\t" + url + "") + print("\t\t" + curator + "") + print("\t\t" + copyright + "") + print("\t\t" + strComments + "") - print "\t" + print("\t") -print "" -print "
" -print " " -print "
" -print "" +print("") +print (" ") +print( "") +print( "")