I still don't understand. Do you have cover arts that are marked as linked, but has missing bitmap files or you have missing cover arts that are marked as embedded?
If you are looking for the first case, i.e. missing external bitmap files, you could use RegExp Find & Replace to locate such tracks with the following settings:
Find what: ^.*
Into: whatever, e.g. Title
Regular expression 1: checked
Replace with:
Code: Select all
Execute("SetVar 0, ""$&"": Dim ix: For ix = 0 To oSongData.AlbumArt.Count -1: If oSongData.AlbumArt.Item(ix).ItemStorage = 1 Then If Not SDB.Tools.FileSystem.FileExists(oSongData.AlbumArt.Item(ix).PicturePath) Then SetVar 0, ""Missing Cover Art File!"": Exit For: End If: End If: Next") & GetVar(0)
VBScript expression: checked
Don't execute that preset, i.e. don't press Replace button! Choose Keep to replace from the dropdown button next to the Replace All button and you should get extracted tracks with missing bitmap file. Of course, before you enter into the RegExp dialog box you should select all tracks that you want to search.
I still don't understand. Do you have cover arts that are marked as linked, but has missing bitmap files or you have missing cover arts that are marked as embedded?
If you are looking for the first case, i.e. missing external bitmap files, you could use RegExp Find & Replace to locate such tracks with the following settings:
Find what: ^.*
Into: whatever, e.g. Title
Regular expression 1: checked
Replace with: [code]Execute("SetVar 0, ""$&"": Dim ix: For ix = 0 To oSongData.AlbumArt.Count -1: If oSongData.AlbumArt.Item(ix).ItemStorage = 1 Then If Not SDB.Tools.FileSystem.FileExists(oSongData.AlbumArt.Item(ix).PicturePath) Then SetVar 0, ""Missing Cover Art File!"": Exit For: End If: End If: Next") & GetVar(0)[/code]
VBScript expression: checked
Don't execute that preset, i.e. don't press Replace button! Choose Keep to replace from the dropdown button next to the Replace All button and you should get extracted tracks with missing bitmap file. Of course, before you enter into the RegExp dialog box you should select all tracks that you want to search.