X-Git-Url: http://git.wpitchoune.net/gitweb/?p=radio.git;a=blobdiff_plain;f=mp3tohtml.py;fp=mp3tohtml.py;h=0000000000000000000000000000000000000000;hp=f0ba0d157af3857e62a120a44ffa29a65793a14e;hb=b44d2202214aa7c5db2bea9013ce34e9631d2a9b;hpb=0cb401ee6342433ff43fed9a9f7a4032550a0139 diff --git a/mp3tohtml.py b/mp3tohtml.py deleted file mode 100755 index f0ba0d1..0000000 --- a/mp3tohtml.py +++ /dev/null @@ -1,121 +0,0 @@ -#!/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 - -import argparse; -import eyeD3 -import fnmatch -import glob -import os -import os.path -import re -import sys - -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) - -def copy_footer(path): - footer_path = os.path.dirname(path) + "/header.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') - -args = parser.parse_args() - -cfg_dir = sys.argv[0] - -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) - -print("") -print (" ") -print( "") -print( "")