I have some VB-scripts converting files and adding id tags that works good, but I have problems finding out how to add album art .jpg file in the mp3-file.
Is that possible?
In the vbs-file I can add title tags using this command:
'Write ID Tag
Call dMC.WriteIDTag(filename, "Artist", artist)
Can I use the same command to add an Album Art jpg.file in the mp3-file?
Tried this, but it did not work:
Call dMC.WriteIDTag(filename, "importart", "image.jpg")
Is that possible?
In the vbs-file I can add title tags using this command:
'Write ID Tag
Call dMC.WriteIDTag(filename, "Artist", artist)
Can I use the same command to add an Album Art jpg.file in the mp3-file?
Tried this, but it did not work:
Call dMC.WriteIDTag(filename, "importart", "image.jpg")
Comment