X-Git-Url: https://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=mp3tohtml.py;h=221269ad59b4edd4a8dc4618799f8cc592c40b55;hb=696f6e09743ba34e6f50692a3dd290cefc69e5cd;hp=d2e452900a5716295ed089fa30e129dba268ea59;hpb=29f33cb3d47103711ef77842932663ee040260b7;p=radio.git diff --git a/mp3tohtml.py b/mp3tohtml.py index d2e4529..221269a 100755 --- a/mp3tohtml.py +++ b/mp3tohtml.py @@ -1,17 +1,54 @@ #!/usr/bin/python +# 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 + +import eyeD3 import glob +import os.path +import re import sys -import eyeD3 + +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: + name = m.group(1) + 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) -files = glob.glob(sys.argv[1] + "/**/*mp3") +header_path = os.path.dirname(sys.argv[0]) + "/header.tpl" +header = open(header_path, "r") +for line in header: + sys.stdout.write(line) -print "List of songs" -print "

List of songs

" -print "" +files = glob.glob(sys.argv[1] + "/**/*mp3") for f in files: tag = eyeD3.Tag() @@ -20,30 +57,45 @@ for f in files: print "\t" - try: - artist = tag.getArtist().decode('utf-8') - print "\t\t" - except UnicodeEncodeError: - print "\t\t" + print "\t\t\n" + print "\t\t" + print "\t\t" - try: - print "\t\t" - except UnicodeEncodeError: - print "\t\t" - - try: - print "\t\t" - except UnicodeEncodeError: - print "\t\t" - - print "\t\t" + 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" + print "\t\t" + print "\t\t" + print "\t\t" print "\t" print "
" + artist + "" + tag.getArtist().encode("UTF8") + "" + tag.getAlbum().encode("UTF-8") + "" + tag.getTitle().encode("UTF-8") + "" + tag.getAlbum() + "" + tag.getTitle() + "" comments = tag.getComments() + strComments = "" for c in comments: - print comments[0].comment - print "\t\t" + url + "" + curator + "" + copyright + "" + strComments + "
" - +print "" print ""