XP, v2.1.1, .exe installer
Hello,
I would like help figuring out how to use custom parameters with the standard Compressor. I really liked how the standard lookahead Compressor worked with custom parameters (via chain script) in v2.0.6, but now it does not work that way in v2.1.1. (I normally went into the App Data folder and manually modified the scripts using Notepad++.) None of my old chains from v2.0.6 containing the standard Compressor work anymore.
Any advice on how I could make this work in v2.1.1?
Unfortunately, the new Audacity v2.1.1 throws the following error:
Could not update effect “Compressor” with:
Compressor: Threshold=-26.4 NoiseFloor=-56.4 Ratio=1.19 AttackTime=0.004 ReleaseTime=1.024 Normalize=yes UsePeak=no
Apparently, v2.1.1 does not accept custom values, such as Ratio. (v2.0.6 seemed to work fine with custom parameters.) To test this, I went and made a brand new Compressor chain in v2.1.1, then inspected its code. I discovered that the order of the Compressor parameters has now changed. I hoped that the issue was merely the order and the addition of quotation marks around the parameter values. Unfortunately, putting things in order & quotes did not help:
Could not update effect “Compressor” with:
Compressor:AttackTime=“0.004” NoiseFloor=“-56.4” Normalize=“1” Ratio=“1.19” ReleaseTime=“1.024” Threshold=“-26.4” UsePeak=“0”
Just to be sure, I even tried it with all the extra zeros, but that also failed:
Could not update effect “Compressor” with:
Compressor:AttackTime=“0.004000000000” NoiseFloor=“-56.400000000000” Normalize=“1” Ratio=“1.190000000000” ReleaseTime=“1.024000000000” Threshold=“-26.400000000000” UsePeak=“0”
Also, unfortunately, with the change to no longer accept custom parameters, we are stuck with an insufficient list of parameter values from which to choose:
- There is only one Ratio available that is less than 2:1 (1.5:1). My main work is doing fine adjustments to Spoken Word, which frequently requires a ratio of less than 2:1. I need specific ratios at least down to the tenth (x.0), preferably the hundredth for ratios < 2.
- The current list of Ratios is still linear (multiples of 0.5), which makes no practical sense. It really should be in powers of 2, because that is how “nature” operates. Ratio = 2^(b/c). “c” should probably be 4 or 8 (but probably 8). Better yet, I would like text fields into which to type numbers. Anyway, please see my spreadsheet for a couple ideas of what I think are better lists of Ratios: https://docs.google.com/spreadsheets/d/1oDipeaoTL43wnkojeuW0L7qjQjCSuBU1vt-VYFUXWeM/pubhtml
- Attack and Release times are too long. I need Attack at least down to 4 milliseconds, and Release down to 500 milliseconds. Unfortunately, the shortest available times are 100 milliseconds and 1000 milliseconds, respectively.
If necessary, I am interested in learning how to write code to make a new Compressor based upon the standard one, but with better parameter capabilities. I really like the standard Compressor, so I am disappointed that I might not be able to use it anymore, unless I revert to v2.0.6. Anyone have any advice on how to go about learning?