Here is a vb script using db's scripting plus vb code.
We use task scheduler to schedule this script every night to automatically convert over 1000 wav files.
Obviously you will need to change the path and file structures for your own environment.....
call waveconvert("mycnv")
Sub WaveConvert(directory)
' ================================================== ================================
'These next few lines are directly from dbconverter 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 = True
dMC.ConvertToFolder = False ' Puts converted file into same folder
' ================================================== ================================
' Because we put each days recordings into a folder based on the Month, then a sub-folder based on the date, need to create the folder names into variables for path.
' There are many ways of doing this. I did it this way.
That has got me thinking...what creates 1000 wav files per day? (thinks of an ex-east German telephone exchange ) I presume they are large if they are being converted over night.
Comment