Hi All,
For some reason, when I specify wave settings in a script, they have no effect on the resulting wave file. Everything gets converted to 44.1 16bit Stereo files no matter what I specify otherwise. Maybe I'm doing something wrong ? Here's my code:
'================================================= =
Set dMC = CreateObject("dMCScripting.Converter")
Set WaveSettings = CreateObject("dMCScripting.WaveSettings")
Call WaveSettings.Set(11025, 1, 16)
dMC.VolumeNormalize = True
dMC.ConvertToFolder = True
Call dMC.AddFromToFiles(strSrcFile, strTgtFile)
Call dMC.GoConversion("Wave", True, False, True, True)
'================================================= =
Am I missing something ? Thanks so much for any help or assistance, this is a great forum !
Ron
For some reason, when I specify wave settings in a script, they have no effect on the resulting wave file. Everything gets converted to 44.1 16bit Stereo files no matter what I specify otherwise. Maybe I'm doing something wrong ? Here's my code:
'================================================= =
Set dMC = CreateObject("dMCScripting.Converter")
Set WaveSettings = CreateObject("dMCScripting.WaveSettings")
Call WaveSettings.Set(11025, 1, 16)
dMC.VolumeNormalize = True
dMC.ConvertToFolder = True
Call dMC.AddFromToFiles(strSrcFile, strTgtFile)
Call dMC.GoConversion("Wave", True, False, True, True)
'================================================= =
Am I missing something ? Thanks so much for any help or assistance, this is a great forum !
Ron
Comment