Closed narekvslife closed 3 years ago
After the release of silero-mini, you added a new function to the utils_vad.py, which made the following piece of code invalid. Raising 'Too many values to unpack' Exception
(get_speech_ts, _, read_audio, _, _, _) = utils
It should be the following instead:
(get_speech_ts, _, _, read_audio, _, _, _) = utils
This is true for all examples.
@adamnsandle
plz check
Will fix collab examples asap
@narekvslife Please check that this solves your problem https://github.com/snakers4/silero-vad/pull/60
@snakers4 It does, thank you!
After the release of silero-mini, you added a new function to the utils_vad.py, which made the following piece of code invalid. Raising 'Too many values to unpack' Exception
It should be the following instead:
This is true for all examples.