You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I test audio normalization, the following error occurs: compand() got an unexpected keyword argument 'threshold_db'
and the relevant code is:
# 4. Dynamic range processing.
if params.compand_enabled:
# Perform dynamic range compression first
transformer.compand(
attack_time=params.attack_time,
decay_time=params.decay_time,
soft_knee_db=params.soft_knee_db,
threshold_db=-20,
compression_ratio=params.compression_ratio
)
The text was updated successfully, but these errors were encountered:
When I test audio normalization, the following error occurs: compand() got an unexpected keyword argument 'threshold_db' and the relevant code is:
# 4. Dynamic range processing.
if params.compand_enabled:
# Perform dynamic range compression first
transformer.compand(
attack_time=params.attack_time,
decay_time=params.decay_time,
soft_knee_db=params.soft_knee_db,
threshold_db=-20,
compression_ratio=params.compression_ratio
)
The code and documentation have been updated, please give it another try.
When I test audio normalization, the following error occurs:
compand() got an unexpected keyword argument 'threshold_db'
and the relevant code is:
The text was updated successfully, but these errors were encountered: