Torben,
For MP3 files that haven’t been Tagged/MMD’d - they import into the Playlist in a strange way:
Title: Beatles - Love Me Do
Artist: Beatles
Even with the correct ID3 tag, they import with the artist+title in the Title field. This would mean lots of annoying editing when tagging new songs with PFL.
I’ve actually run an MMD batch process on most of my songs, but I’ve found one that I missed - a nice Xmas number! But all songs without an MMD imported like this. All ID3 tags were set, and rolling back to the previous version (to do the batch script) showed the songs correctly.
No, either roll-back a version and stay with it or use this script on the older version, then go back to the latest:
[code]// Save Cue Points to MMD Meta Data Files
// and set EndType to “t” for temp
var i: integer;
begin
// for i := 0 to CurrentPlaylist.GetCount - 1 do
// CurrentPlaylist.GetItem(i).SetEndType(‘t’);
for i := 0 to CurrentPlaylist.GetCount - 1 do
CurrentPlaylist.GetItem(i).SaveMMD;
end.
[/code]
Drop all your songs into the playlist, then run that script - It’ll create/save MMD files for all the songs. If you’ve already got songs with MMD files, they’ll be kept. Once you’ve run that script (on the older version!), you can go back to the latest.
If you want to set auto-cue points, turn that option on in the Config and remove my // comments - I use “t” to show an auto-out-point. Useful to get all songs ready for auto in a quick way. When I have time, I review them and set them as “e” or “f” in the usual way.