Python speech recognition library prints to the screen when recording audio

Question:

I am recording user’s voice using python speech_recognition library. The program shows a result even though I do not print it to the screen. How can I eliminate this?

enter image description here

Answers:

According to package github issue tracker entry Transcript confidence results are always printed out even without asking to print it #662 this is result of some.. recent changes in package source code.

Can be solved by downgrading package to version 3.8.1 pip install SpeechRecognition==3.8.1

Answered By: Georgiy
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.