benfmiller / audalign

Package for aligning audio files through audio fingerprinting
MIT License
84 stars 2 forks source link

Audio Alignment Gains #50

Closed ronespu closed 10 months ago

ronespu commented 1 year ago

Hello,

I've working whit your code; thank you very much is so useful.

My problem happens when I trying to reproduce the audio, the audio is amplified, therefore the noise floor as well. Is there a way to hold the original audios gains?

Thank you!

benfmiller commented 1 year ago

I'm glad it has been useful for you! Sorry for the late reply

Have you tried the normalize field in the BaseConfig?

import audalign as ad

fingerprint_rec = ad.FingerprintRecognizer()
fingerprint_rec.config.normalize = False

Then passing that to an align function?