title
Products            Buy            Support Forum            Professional            About            Codec Central
 

Script to convert and concatenate

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • eznoh

    • Dec 2004
    • 11

    Script to convert and concatenate

    I'm using the following script:

    ' Create dMC Object
    Set dMC = CreateObject("dMCScripting.Converter")

    ' Set My options (Volume norm off, ID Tag Preservation On, No delete Source files)
    dMC.VolumeNormalize = False
    dMC.PreserveTags = True
    dMC.DeleteSourceFiles = False

    ' Set Output Folder (to C:\Show )
    dMC.ConvertToFolder = True
    dMC.ToFolder = "C:\Show"

    ' Add My Files to Convert
    Call dMC.AddFromToFiles("C:\Show\m5_sc.wav","C:\Show\sh ow_mp")
    Call dMC.AddFromToFiles("C:\Show\m6_sc.wav","C:\Show\sh ow_mp")

    ' Convert To Wave (No option page, Want Overwrite page, Want finished, Want Errors)
    Call dMC.GoConversion("Mp3 (Lame)", True, False, False, False)

    I would like both files to be converted into the one output file but the first file gets overwritten.

    Mike
  • Spoon
    Administrator
    • Apr 2002
    • 44505

    #2
    Re: Script to convert and concatenate

    Sorry there is no combiner.
    Spoon
    www.dbpoweramp.com

    Comment

    • eznoh

      • Dec 2004
      • 11

      #3
      Re: Script to convert and concatenate

      Thanks.

      Comment

      Working...

      ]]>