You document using the microphone through : ``` import speech_recognition as sr r = sr.Recognizer() with sr.Microphone() as source: audio = r.listen(source) ``` But is there a way to initiate and "close" the microphone using Python ?