Hi,
Im having problems with my script. I can convert from wav to mp3 without any problem but I cannot convert from wav to wma.
Here is my script
Dim dMC
set dMC = CreateObject("dMCScripting.Converter")
call dMC.Convert("C:\file.wav","file.wma", "Windows Media Audio 10", "-settings=128 kbps, 44 kHz, 2 channel 16 bit CBR", "C:\dMC_erros.txt")
set dMC = Nothing
The -settings cam from the registry.
I had to remove the double quotes after the -settings=
I recieve the following error
Error Creating WMA Profile. [clEncoder::BeginConversion]
Thanks
Phil
Im having problems with my script. I can convert from wav to mp3 without any problem but I cannot convert from wav to wma.
Here is my script
Dim dMC
set dMC = CreateObject("dMCScripting.Converter")
call dMC.Convert("C:\file.wav","file.wma", "Windows Media Audio 10", "-settings=128 kbps, 44 kHz, 2 channel 16 bit CBR", "C:\dMC_erros.txt")
set dMC = Nothing
The -settings cam from the registry.
I had to remove the double quotes after the -settings=
I recieve the following error
Error Creating WMA Profile. [clEncoder::BeginConversion]
Thanks
Phil
Comment