Somewhere, here I guess the problem starts:
|
items: _InsertEQBandKW = {} |
|
for param in instance._kw["params"]: |
|
id = param["id"] |
|
if id == self._ids.freq: |
|
items["freq"] = param |
|
elif id == self._ids.gain: |
|
items["gain"] = param |
|
elif id == self._ids.reso: |
|
items["reso"] = param |
|
return InsertEQBand(kw=items) |
The InsertEQ gets the mixer parameters correctly (I checked):
|
return InsertEQ(self._kw["params"]) |
Somewhere, here I guess the problem starts:
PyFLP/pyflp/mixer.py
Lines 268 to 277 in f2bd7a0
The
InsertEQgets the mixer parameters correctly (I checked):PyFLP/pyflp/mixer.py
Line 505 in f2bd7a0