Skip to content

Commit

Permalink
Updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
dbklim committed Nov 7, 2019
1 parent 8c4965d commit 8956425
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from setuptools import setup, find_packages


__version__ = 1.1
__version__ = 1.2


with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:
Expand Down
4 changes: 1 addition & 3 deletions webrtcvad_wrapper/webrtcvad_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,9 +306,7 @@ def __filter_frames(self, frames, padding_duration_ms=50, threshold_voice_frames
end = start + len_segment
filtered_segments_spans.append([round(start, 2), round(end, 2), filtered_segments[i][0]])

#self.set_mode(self.sensitivity_mode)
del vad

return filtered_segments_spans


Expand Down Expand Up @@ -480,4 +478,4 @@ def main():


if __name__ == '__main__':
main()
main()

0 comments on commit 8956425

Please sign in to comment.