MyGit

v0.4.0

SYSTRAN/faster-whisper

版本发布时间: 2023-04-03 23:29:31

SYSTRAN/faster-whisper最新发布版本:v1.0.1(2024-03-01 18:46:22)

Integration of Silero VAD

The Silero VAD model is integrated to ignore parts of the audio without speech:

model.transcribe(..., vad_filter=True)

The default behavior is conservative and only removes silence longer than 2 seconds. See the README to find how to customize the VAD parameters.

Note: the Silero model is executed with onnxruntime which is currently not released for Python 3.11. The dependency is excluded for this Python version and so the VAD features cannot be used.

Speaker diarization using stereo channels

The function decode_audio has a new argument split_stereo to split stereo audio into seperate left and right channels:

left, right = decode_audio(audio_file, split_stereo=True)

# model.transcribe(left)
# model.transcribe(right)

Other changes

相关地址:原始地址 下载(tar) 下载(zip)

查看:2023-04-03发行的版本