(self, audio_data: np.ndarray)
| 55 | return audio_data |
| 56 | |
| 57 | def upsample(self, audio_data: np.ndarray) -> np.ndarray: |
| 58 | return self._resample(audio_data, self.upsampler) |
| 59 | |
| 60 | def downsample(self, audio_data: np.ndarray) -> np.ndarray: |
| 61 | return self._resample(audio_data, self.downsampler) |
no test coverage detected