From b050db42c6fc3d219335d270c0d99528203f5aed Mon Sep 17 00:00:00 2001
From: "W. Trevor King" <wking@drexel.edu>
Date: Mon, 14 Mar 2011 16:13:48 -0400
Subject: [PATCH] More id3 tag handling in mkogg.py.

---
 posts/mkogg/mkogg.py | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/posts/mkogg/mkogg.py b/posts/mkogg/mkogg.py
index ea42c14..cdd22a0 100755
--- a/posts/mkogg/mkogg.py
+++ b/posts/mkogg/mkogg.py
@@ -255,15 +255,24 @@ class Converter (object):
             'tcop': 'copyright',
             'tit2': 'title',
             'tpe1': 'artist',
-            'tpe2': 'band',
+            'tpe2': 'accompaniment',
             'tpe3': 'conductor',
             'tpos': 'part of set',
+            'tpub': 'organization',
             'trck': 'tracknumber',
             'tyer': 'date',
             }
         drop_keys = [
             'apic',  # attached picture
             'geob',  # general encapsulated object
+            'ncon',  # ?
+            'pcnt',  # play counter (incremented with each play)
+            'priv',  # private
+            'tenc',  # encoded by
+            'tope',  # original artist (e.g. for a cover)
+            'tlen',  # length (in milliseconds)
+            'tmed',  # media type
+            'wxxx',  # user defined URL
             ]
         in_v2 = False
         for line in stdout.splitlines():
-- 
2.26.2