Process call method.
(self, x)
| 150 | ) |
| 151 | |
| 152 | def __call__(self, x): |
| 153 | """Process call method.""" |
| 154 | return spectrogram( |
| 155 | x, |
| 156 | n_fft=self.n_fft, |
| 157 | n_shift=self.n_shift, |
| 158 | win_length=self.win_length, |
| 159 | window=self.window, |
| 160 | ) |
| 161 | |
| 162 | |
| 163 | class LogMelSpectrogram(object): |
nothing calls this directly
no test coverage detected