Question
Are there any built-in tools or plugins to parse a text file for tags and batch add tags to a set of music files in beets?
What I want to do
- read plain text file (album.txt) line by line
- parse each line and read multiple tags per line
- apply tags according to predetermined sequence
- each file corresponds with one album
- each line corresponds to one track
- each line lists tags in a specific order with separator
Example
Sequence: trackno;artist;album;trackname;performer
Sample file:
1;Toto;Toto IV;Rosanna;Steve Lukather
2;Toto;Toto IV;Make Believe;Steve Lukather
3;Toto;Toto IV;Africa;Steve Lukather
Etc