We convert MP2 to MP3’s. The files are normalized at -9 but after it goes through the dbpoweramp conversion it comes out at -3. I have tried to
change VolumeNormalize to False but that didn't help. Any thoughts? Here is what my script looks like.
change VolumeNormalize to False but that didn't help. Any thoughts? Here is what my script looks like.
Code:
'Create Script Object Set dMC = CreateObject("dMCScripting.Converter") Set Mp3Settings = CreateObject("dMCScripting.Mp3Settings") 'Audio settings not set for codec dMc.VolumeNormalize = True dMC.PreserveTags = True dMC.DeleteSourceFiles = False dMC.ConvertToFolder = False dMC.AddFromFile("C:\audio files.mp2") 'Mp3 Audio Codec Settings 'kbps, 44.1KHz, Mono, CBR(constant bit rate) Call Mp3Settings.Set(96, 44100, 1, 0) 'Start the Conversion of above files Call dMC.GoConversion("Mp3 (Lame)", True, True, True, False)
Comment