I have a database with information describing the contents of a group of MIDI files. I need to export the data from this database into an individual txt file for each row in the table. I need to do this because my ID3 tagging software requires a specific format in order to tag MP3 files created from the MIDI files.
My column headers are as follows:
MIDI, TIT2, TIT3, TCOM, TPE1, TALB, TCON, TYER
where MIDI is the filename without the ".mid" file extension.
The text file must be named
[MIDI].tags.txt
The contents of the file must be formatted as follows:
TIT2=[TIT2]
TIT3=[TIT3]
TCOM=[TCOM]
TPE1=[TPE1]
TALB="Peter's MIDI AMPICO Popular"
TCON="AMPICO Popular"
TYER=[TYER]
Where text shown in [] is the name of the column header in my database from which the text should be printed in the txt file for the individual row.
Any help/ideas are appreciated.
My column headers are as follows:
MIDI, TIT2, TIT3, TCOM, TPE1, TALB, TCON, TYER
where MIDI is the filename without the ".mid" file extension.
The text file must be named
[MIDI].tags.txt
The contents of the file must be formatted as follows:
TIT2=[TIT2]
TIT3=[TIT3]
TCOM=[TCOM]
TPE1=[TPE1]
TALB="Peter's MIDI AMPICO Popular"
TCON="AMPICO Popular"
TYER=[TYER]
Where text shown in [] is the name of the column header in my database from which the text should be printed in the txt file for the individual row.
Any help/ideas are appreciated.