LouisLu
Results
1
issues of
LouisLu
Hi, Is the code `self._windownum = len(signal)/(self._winsize/2)-1` in https://github.com/shunsukeaihara/pyssp/blob/master/pyssp/vad/ltsd.py#L82 should be `self._windownum = int(len(signal)/(self._winsize/2) - 1)` for python3? also, the line 46 and line 60's print statement should command out...