Hi,
I just bought the dbpoweramp reference. Until now we use windows scripting host to convert from wav to wma but your application offers better control.
I'm able to convert from wav > mp3 or wma > mp3 without any problems.
When I try to convert from wav > wma I get various errors (based whether I type in : 'Windows Media Audio 9.1' or 'Windows Media Audio 9'
Error Creating WMA Profile. [clEncoder::BeginConversion]
Error: Unable to load encoder 'Windows Media Audio 9.1'. [dBCoreConverter::dBCoreConverter]
Does someone have a working code sample? (can be VB/C++/C#)
I've been playing a bit with your components, but without luck.
CREATE(DMConverter);
CREATE(DMWMASettings);
//DMWMASettings.SetWMA('Windows Media Audio 9.1', 'VBR Quality 98, 44kHz, stereo VBR', 1);
DMConverter.Convert(
'c:\temp\org.wav',
'c:\temp\converted.wma',
'Windows Media Audio 9.1',
'VBR Quality 98, 44kHz, stereo VBR',
'c:\temp\log.txt'
);
I just bought the dbpoweramp reference. Until now we use windows scripting host to convert from wav to wma but your application offers better control.
I'm able to convert from wav > mp3 or wma > mp3 without any problems.
When I try to convert from wav > wma I get various errors (based whether I type in : 'Windows Media Audio 9.1' or 'Windows Media Audio 9'
Error Creating WMA Profile. [clEncoder::BeginConversion]
Error: Unable to load encoder 'Windows Media Audio 9.1'. [dBCoreConverter::dBCoreConverter]
Does someone have a working code sample? (can be VB/C++/C#)
I've been playing a bit with your components, but without luck.
CREATE(DMConverter);
CREATE(DMWMASettings);
//DMWMASettings.SetWMA('Windows Media Audio 9.1', 'VBR Quality 98, 44kHz, stereo VBR', 1);
DMConverter.Convert(
'c:\temp\org.wav',
'c:\temp\converted.wma',
'Windows Media Audio 9.1',
'VBR Quality 98, 44kHz, stereo VBR',
'c:\temp\log.txt'
);
Comment