X-Git-Url: http://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=mp3tohtml.py;h=a683c88eacc23af6168d5a82bc64668ad0580f88;hb=974601b5acfe90049cde855d50715719a04d061d;hp=3ba95f621f6344c25dd4e76835486f3b86531537;hpb=cc2433717d67bdb813e6a7c4cb8c3f8239a0869f;p=radio.git diff --git a/mp3tohtml.py b/mp3tohtml.py index 3ba95f6..a683c88 100755 --- a/mp3tohtml.py +++ b/mp3tohtml.py @@ -1,74 +1,111 @@ -#!/usr/bin/python +#!/usr/bin/python2 -# Generate an HTML page containing information about -# MP3s in a directory. +# 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 +# Last version of this tool can be get from the GIT repository: +# http://git.wpitchoune.net/radio.git # -# (c) 2015 Jean-Philippe Orsini +# (c) 2016 Jean-Philippe Orsini +import argparse; +import eyeD3 +import fnmatch import glob +import os +import os.path +import re import sys -import eyeD3 - -if len(sys.argv) != 2: - exit(1) - -files = glob.glob(sys.argv[1] + "/**/*mp3") -print "" -print "" -print "All songs" +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 + +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 HTML containing information about the MP3 files.') +parser.add_argument('dir', help='The directory containing the MP3 files') + +args = parser.parse_args() + +copy_header(sys.argv[0]) + +files = [] +for root, dirnames, filenames in os.walk(args.dir): + for filename in fnmatch.filter(filenames, '*.mp3'): + files.append(os.path.join(root, filename)) -print " " -print "" -print " " -print "" -print "" - -print "

List of songs

" - -print "" -print "" for f in files: tag = eyeD3.Tag() tag.link(f) - print "\t" - - try: - artist = tag.getArtist() - print "\t\t" - except UnicodeEncodeError: - print "\t\t" - - try: - print "\t\t" - except UnicodeEncodeError: - print "\t\t" + print("\t") - try: - print "\t\t" - except UnicodeEncodeError: - print "\t\t" + print("\t\t\n") + print("\t\t") + print("\t\t") - print "\t\t" - - print "\t" - -print "
ArtistAlbumTitleComments
" + artist + "" + tag.getAlbum() + "
" + tag.getTitle() + "" + tag.getArtist().encode("UTF8") + "" + tag.getAlbum().encode("UTF-8") + "" + tag.getTitle().encode("UTF-8") + "" comments = tag.getComments() + strComments = "" for c in comments: - print comments[0].comment - print "\t\t
" -print "
" -print " " -print "
" -print "" + 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") + +print("") +print ("
    ") +print ("
") +print( "") +print( "")