resemble-ai / Resemblyzer

A python package to analyze and compare voices with deep learning
Apache License 2.0
2.67k stars 419 forks source link

typo in demo2 #36

Closed liszhang closed 3 years ago

liszhang commented 3 years ago
speaker_wavs = [wav[int(s[0] * sampling_rate):int(s[1]) * sampling_rate] for s in segments]

should be revised to

speaker_wavs = [wav[int(s[0] * sampling_rate):int(s[1]* sampling_rate)] for s in segments]
CorentinJ commented 3 years ago

Fixed, cheers

liszhang commented 3 years ago

Fixed, cheers

cheers!