In the original Whisper transcribe implementation providing None to the verbose option suppresses everything, which is explained here. I believe it is this line here, which overrides the None behavior and subsequently there is no option to have no output whatsoever (providing None shows the progress bar and language, providing False also shows the progress Bar and Providing True does not show the progress bar but displays the list of word-level timestamps).
It would be ideal if there was an option to suppress all output from the transcribe method.
In the original Whisper
transcribe
implementation providingNone
to theverbose
option suppresses everything, which is explained here. I believe it is this line here, which overrides theNone
behavior and subsequently there is no option to have no output whatsoever (providing None shows the progress bar and language, providing False also shows the progress Bar and Providing True does not show the progress bar but displays the list of word-level timestamps).It would be ideal if there was an option to suppress all output from the transcribe method.