How to normalize audio input?

3 Ansichten (letzte 30 Tage)
fei
fei am 24 Mai 2013
Beantwortet: Antonio Ferreras am 22 Okt. 2019
Hello, does anybody know how wavrecord function scales PCM format (range 0-256 or 0-65536) into -1;1 interval? many thanks for answers

Antworten (3)

Daniel Shub
Daniel Shub am 24 Mai 2013
The wavrecord function does not do the scaling but rather the recsnd function handles the scaling. The recsnd function is/was not a well defined entity since it was a platform dependent mex file and in some cases it used audiorecorder. The wavrecord function is now obsolete and is slated to be removed, so there is no single version...
That said, (x-128)/128 is probably a reasonable approximation of the conversion. Do you have reason to doubt this?

fei
fei am 26 Mai 2013
Thank you for your answer Daniel, finally I used mapminmax function which uses this algorithm: y = (ymax-ymin)*(x-xmin)/(xmax-xmin) + ymin;
  1 Kommentar
Jan
Jan am 26 Mai 2013
Please post comments in the comment section of the corresponding answer, not as further answer. Thanks.

Melden Sie sich an, um zu kommentieren.


Antonio Ferreras
Antonio Ferreras am 22 Okt. 2019
The problem con mapminmax is that it introduces a continuus bias

Kategorien

Mehr zu Audio Processing Algorithm Design finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by