Skip to content

Commit cac821d

Browse files
committed
fix bug in phase_vocoder_int
1 parent 8935d9b commit cac821d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pytsmod/pvtsm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def phase_vocoder_int(x, s, win_type='hann', win_size=2048, syn_hop_size=512,
172172

173173
y[c, :] = y_chan
174174

175-
return y
175+
return y.squeeze()
176176

177177

178178
def _find_peaks(spec):

0 commit comments

Comments
 (0)