Page 1 of 1

SongData.AlbumArt.UpdateDB should not modify files

Posted: Wed Jun 03, 2009 3:39 am
by ZvezdanD
Here is a slightly modified part of the script by onkel_enno for adding tracks to the libary:

Code: Select all

    Dim oSonglist
    Dim oSongData
    Dim i

    Set oSonglist = SDB.SelectedSongList
    For i = 0 to oSonglist.Count-1
        Set oSongData = oSonglist.Item(i)
        If oSongData.IsntInDB Or oSongData.SongID = -1 Then
            oSongData.UpdateDB
            oSongData.AlbumArt.UpdateDB
        End If
    Next
The "Update tags when editing properties" option is turned off, but MM still modify .mp3 files! If I remove oSongData.AlbumArt.UpdateDB, files are not modified.

Re: SongData.AlbumArt.UpdateDB should not modify files

Posted: Wed Jun 10, 2009 7:20 am
by jiri
Thanks, will be fixed in the next build.

Jiri

Re: SongData.AlbumArt.UpdateDB should not modify files

Posted: Thu Jun 11, 2009 6:23 pm
by ZvezdanD
Works fine in 1255. Thanks!