PDA

View Full Version : Converting 2 Wave. Need Help!!!??



Unregistered
08-12-2002, 04:59 PM
Hi,
Below is my code. when the .GoConversion is called the Error Log window pops up with error "The CODEC required to compress". Am I doing somthing wrong. please help.

But I can right click the .mp3 file in Explorer and convert to Wave without any problems.

If (oDMC Is Nothing) Then
Set oDMC = New DMCSCRIPTINGLib.Converter
With oDMC
.VolumeNormalize = True
.PreserveTags = True
.DeleteSourceFiles = True
.ConvertToFolder = True
End With
End If
If (oDMC_WavSettings Is Nothing) Then
Set oDMC_WavSettings = New DMCSCRIPTINGLib.WaveSettings
oDMC_WavSettings.Set 44100, 2, 64
End If

For Each oFTempFile In aFSourceFolder.Files
If (UCase(Right(oFTempFile.Name, 3)) = "MP3") Then
oDMC.ToFolder = aFSourceFolder.Path
oDMC.AddFromFile oFTempFile.Path
oDMC.GoConversion "Wave", True, False, True, False

-Parma

Spoon
08-13-2002, 02:30 AM
>oDMC_WavSettings.Set 44100, 2, 64

Shouldn't it be 16 on the end for 16 bit?

Unregistered
08-13-2002, 11:37 AM
dBpowerAMP is really cool program. I am very glad that I found this gem of util.

I would like to contribute to this cool product. Please let me know what is the procedure/policy.

And also, Is there way to suppress the progess window when the convertion is started?

-Parma

Spoon
08-13-2002, 12:00 PM
There are no options for hiding to progress.

Unregistered
08-13-2002, 01:12 PM
I copied the code below into a VB function, and at run time in this line, I get an error message "ActiveX component can't create object"

Set Multiplayer = CreateObject("dBpowerAMP.Multiplayer")

Since I have used dMC by adding a reference to it in VB, I tried to do the same. but could not find anything in the references window. I also searched the registry for the progID "dBpowerAMP.Multiplayer" and did not find any.

Please help.

-Parma

daren
08-18-2002, 03:52 AM
Hi unregistered,

When you say "I would like to contribute to this cool product"
do you mean by writing codecs, DSP's, etc...?

The procedure is simple; create the components (examples
available on the developer page) and send them to Spoon to
be put on the download page.

The beta forum is also useful to get codecs tested before releasing.

What were you thinking of creating?

Best regards,
Daren.