So today I decided to look at Post Process XML scripts.
On Windows they are located in the folder:
c:\ProgramData\Steinberg\Audio Export Post Process Scripts\
I took an existing aepp script and modified it to make a mp3 copy of an exported Wav file:
<?xml version="1.0" encoding="UTF-8"?> Make a mp3 copy using Lame lame.png Lame 3.99.5 C:\Lame\lame.exe "$PATH" false falseI made an icon for it, the lame.png 32x21 pixels (the others where 32x32 pixels that I assume is the max)
The rest should be fairly self explanatory.
My problem that I have not been able to figure out is to parse settings along to Lame.
Right now it renders the wav and Lame encodes a mp3 copy to the same folder as the file destination chosen in the Export path setting, and that is fine.
But it always uses the Lame default setting, 128kbps.
I want to put a " -b 320 " setting in there. something like “Lame.exe -b 320 audio.wav” where it now does a “Lame.exe audio.wav”
Anyone familiar with XML, that could give me a hint ?