Code: Select all
[Effects/Normalize]
RemoveDcOffset=1
Normalize=1
Level=-2
StereoIndependent=0
Code: Select all
[Effects/Normalize]
RemoveDcOffset=1
Normalize=1
Level=-2
StereoIndependent=0
Do you mean, so that the user can create a Chain (sequence) of commands such as :Gale Andrews wrote:I see it that we need to attach Export Multiple commands to a Chain
Why only for Export Multiple? Why not build it into all Export commands?Edgar wrote:Export Multiple – normalize each track on export
It is very easy for the user to normalize everything with a keystroke or two just before exporting it but if one has 15 or 30 minutes of LP recorded then broken into 10 or 15 label-separated tracks it is very tedious to select each labeled section individually and normalize them one at a time.steve wrote: Why only for Export Multiple? Why not build it into all Export commands?
It is a very common to want to normalize as a last step before exporting.
When Exporting a project that has multiple tracks as one file, it would be useful for Normalize to be applied after the tracks are mixed.
Personally, I am unlikely to want to do that. If it is a well produced album, the relative loudness of each track will have been carefully balanced and I'd not want to mess with that - why would I want a purposefully "quiet" track to come out loud?Edgar wrote: but if one has 15 or 30 minutes of LP recorded then broken into 10 or 15 label-separated tracks it is very tedious to select each labeled section individually and normalize them one at a time.
but it is a common failure for people working with multi-track projects for the first time to create a mix that is badly distorted because the "mix" is much higher level than the original track.Edgar wrote:It is very easy for the user to normalize everything with a keystroke or two just before exporting it
Given that it is not easy to change the Export dialog by adding this checkbox I'm going to stay away from that.steve wrote:Personally, I am unlikely to want to do that.Edgar wrote:it is very tedious to select each labeled section individually and normalize them one at a time.but it is a common failure …Edgar wrote:It is very easy for the user to normalize everything with a keystroke or two just before exporting it
The "correct" procedure …
It would be much quicker and easier to just select "Normalize to ...." in the export dialogue.
Code: Select all
wxCheckBox *mNormalize;Code: Select all
mNormalize = S.Id(NormalizeID).AddCheckBox(_("Normalize each track before exporting"), wxT("true"));Code: Select all
if (mNormalize->GetValue()) {
mProject->mViewInfo.sel0 = t0;
mProject->mViewInfo.sel1 = t1;
mProject->OnEffect(ALL_EFFECTS | CONFIGURED_EFFECT, EffectManager::Get().GetEffectByIdentifier(wxT("Normalize")));
}Yes, and of course this is for applying a chain to a project (not to files) until there is some way to run a chain on files with a label track (or some control track) present, or indeed unless the Export Multiple commands available for adding to a Chain let you do things like set labels at percentage points (or seconds) relative to the start and end of the track.steve wrote:Do you mean, so that the user can create a Chain (sequence) of commands such as :Gale Andrews wrote:I see it that we need to attach Export Multiple commands to a Chain
High-pass filter -> Normalize -> Export Multiple
I don't think so at all, it's just not possible now.steve wrote:Export Multiple impossible for batch processing (applying to files).
I am the only one in this topic interested in Export Multiple in Chains, so forget that.Gale Andrews wrote:waxcylinder wrote:Does this need transferring to Wiki>PFR - or is someone going to write a proposal - or is it dead?