RT60 Measurement Routine

RT60 Measurement Routine

Automatically determines the reverberation time of an impulse response using the Schroeder method 1.

References

1

M. R. Schroeder, “New Method of Measuring Reverberation Time,” J. Acoust. Soc. Am., vol. 37, no. 3, pp. 409-412, Mar. 1968.

pyroomacoustics.experimental.rt60.measure_rt60(h, fs=1, decay_db=60, plot=False, rt60_tgt=None)

Analyze the RT60 of an impulse response. Optionaly plots some useful information.

Parameters
  • h (array_like) – The impulse response.

  • fs (float or int, optional) – The sampling frequency of h (default to 1, i.e., samples).

  • decay_db (float or int, optional) – The decay in decibels for which we actually estimate the time. Although we would like to estimate the RT60, it might not be practical. Instead, we measure the RT20 or RT30 and extrapolate to RT60.

  • plot (bool, optional) – If set to True, the power decay and different estimated values will be plotted (default False).

  • rt60_tgt (float) – This parameter can be used to indicate a target RT60 to which we want to compare the estimated value.