I have been loading mp3s in from an m3u playlist - no database as I am using StationPlaylist Creator to schedule the files. I think mAirlist is auto determining the cue points then saving into the tags? Doesnt seem to be any mmd files
I suppose you could use a line from one of our many scripts to set the FadeOut to “0” - then re-load your files into the Playlist and then run the script to save the MMD files. Perhaps something like this:
1st Script:
[b]
var
i: integer;
begin
for i := 0 to CurrentPlaylist.GetCount - 1 do
// Save MMD Data File
CurrentPlaylist.GetItem(i).SaveMMD;
end;
end.
[/b]
Second script:
[b]
var
i: integer;
begin
for i := 0 to CurrentPlaylist.GetCount - 1 do
// Save MMD Data File
CurrentPlaylist.GetItem(i).SaveMMD;
end;
end.
[/b]Load the songs into the Playlist, run the first script… then clear the Playlist and re-load the songs. They should re-scan as they no longer have a FadeOut point set. Then run the 2nd script to save the new MMD data. Also, when I bulk set item attributes like song icons and FadeOut points, I tend to mark the EndType with a “t” to denote “temporary” - this signifies that I should manually check it at some point
No, this is not true. When there’s an MMD file, no auto-cue scanning will take place. Even when there’s a 0 in the MMD file (this is interpreted as “I don’t want a fade out point, even if auto-cue would find one”).