I know there are a few threads already covering this, but I've tried everything suggested with no results.
I'm using the following code:
Set dMC = CreateObject("dMCScripting.Converter")
dMC.VolumeNormalize = False
dMC.PreserveTags = True
dMC.DeleteSourceFiles = False
dMC.ConvertToFolder = True
dMC.ToFolder = "C:/Converted Music/"
Call dMC.AddFromToFiles("sourcefile.aif", "destinationfile")
Call dMC.GoConversion("Windows Media Audio", True, True, True, False)
I've installed, reinstalled, restarted at all the right points, converted successfully using the normal interface method, but I can't get it to convert using the script. It just says "Unable to create compression CODEC 'Windows Media Audio', please check software installation."
Help!!
I'm using the following code:
Set dMC = CreateObject("dMCScripting.Converter")
dMC.VolumeNormalize = False
dMC.PreserveTags = True
dMC.DeleteSourceFiles = False
dMC.ConvertToFolder = True
dMC.ToFolder = "C:/Converted Music/"
Call dMC.AddFromToFiles("sourcefile.aif", "destinationfile")
Call dMC.GoConversion("Windows Media Audio", True, True, True, False)
I've installed, reinstalled, restarted at all the right points, converted successfully using the normal interface method, but I can't get it to convert using the script. It just says "Unable to create compression CODEC 'Windows Media Audio', please check software installation."
Help!!
Comment