Hi,
Could you post some info here about scripting for your different codecs? For example, I am successfully scripting using the "mp3 (Lame)" codec, but cannot seem to get there with the "AAC (Advanced Audio Compression)" codec, and these forums are very light on scripting help...
For example, this VBS works fine:
...but this doesn't:
...neither does this:
I know this is probably because I am not using the CompressionCLI fields properly, which is why some info on these forums would be very much appreciated.
You know what would be ace: an example of a "Call dMC.Convert..." statement for each codec. That would sort it!
Cheers!
J
Could you post some info here about scripting for your different codecs? For example, I am successfully scripting using the "mp3 (Lame)" codec, but cannot seem to get there with the "AAC (Advanced Audio Compression)" codec, and these forums are very light on scripting help...
For example, this VBS works fine:
Code:
Set dMC = CreateObject("dMCScripting.Converter") Call dMC.Convert("C:\inputfile.flac", "C:\outputfile.mp3", "mp3 (Lame)", "-b=128", "")
Code:
Set dMC = CreateObject("dMCScripting.Converter") Call dMC.Convert("C:\inputfile.flac", "C:\outputfile.aac", "AAC (Advanced Audio Compression)", "-cbr 256000", "")
Code:
Set dMC = CreateObject("dMCScripting.Converter") Call dMC.Convert("C:\inputfile.flac", "C:\outputfile.wma", "Windows Media Audio 9 Release 1 (WMA Pro 9)", "", "")
You know what would be ace: an example of a "Call dMC.Convert..." statement for each codec. That would sort it!
Cheers!
J
Comment