Hi,
currently I use the CLI of dmc in a python script I'm writing. I convert a bunch of flac files to mp3 currently one at a time using something like this:
Now I would really like to calculate not only the track gain but also the album gain of all files I'm converting. Using "-albummode={qt}1{qt}" won't really work because every file conversion is a separate operation.
Does anyone has an idea how I can achieve this?
thanks
currently I use the CLI of dmc in a python script I'm writing. I convert a bunch of flac files to mp3 currently one at a time using something like this:
Code:
CoreConverter.exe -infile="%s" -outfile="%s" -convert_to="mp3 (Lame)" -V %s -dspeffect1="ReplayGain=-albummode={qt}0{qt}"
Does anyone has an idea how I can achieve this?
thanks
Comment