Artist / Title - duplicated info

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.

Can you please supply me one of these files? It’s easier to debug then …

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.

http://www.charliedavy.co.uk/title.zip (4.8MB)

Thanks for the file. I have downloaded it onto my home PC, I will take a look at it tonight.

Issue resolved. The title was set to the filename (without extension) even if an (ordinary) ID3 tag was detected.

Has a fixed version been released yet? I need it asap - developing our new website and the Now Playing info comes out incorrectly.

Ant

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.

Thanks, Charlie!

The problem is not fixed in 2.1.26 for me… :frowning:

kind regards,

Christoph

What kind of files are those? MP3 files with standard ID3 tag but without mAirList tag?

HAH,

The wrong information was saved in a .mmd-File. After deleting the .mmd everything is fine.

Thanks!

Christoph