pyssp icon indicating copy to clipboard operation
pyssp copied to clipboard

python speech signal processing library

Results 2 pyssp issues
Sort by recently updated
recently updated
newest added

I try to use the following version code. but it doesn't work. I fixed some code and making pull request. scipy==1.3.3 numpy==1.17.4 python==3.6.9

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...