cjcodeproj / musicscan

Python code to examine music files and extract metadata
MIT License
0 stars 0 forks source link

Consider editing documentation #25

Closed cjcodeproj closed 2 months ago

cjcodeproj commented 3 months ago

There should probably be a Markdown file in the repository talking about file editing.

We need to emphasize that when id3scan creates this XML:

  <catalog>
   <composers>
    <composer><unkn>Garth Brooks/Pat Alger</unkn></composer>
   </composers>
   </catalog>

It should be turned to this:

  <catalog>
   <composers>
    <composer><gn>Garth</gn><fn>Brooks</fn></composer>
    <composer><gn>Pat</gn><fn>Alger</fn></composer>
   </composers>
   </catalog>

The <unkn> element is a catch all for anything, and whenever it's encountered, the names should be converted to their proper equivalents.

cjcodeproj commented 2 months ago

Commit:

https://github.com/cjcodeproj/musicscan/commit/f3f5bf20b4ddf9abe9adaddc47d0adbe3996b185