(y, hparams)
| 32 | |
| 33 | |
| 34 | def _istft(y, hparams): |
| 35 | return librosa.istft(y, hop_length=get_hop_size(hparams), win_length=hparams['win_size']) |
| 36 | |
| 37 | |
| 38 | def librosa_pad_lr(x, fsize, fshift, pad_sides=1): |
nothing calls this directly
no test coverage detected