Launch exec talking into his fucking mic

Fumzo

Subscriber
To do this you will need Python and Visual studio code or something similar.

Then open your command prompt and enter these two commands one by one.
« pip install SpeechRecognition »
« python -m pip install pyaudio »

Once this done go to visual studio code open a new file with python code and copy and paste my code according to your language RU or EN version.
Then save the script in a path previously created for example : D:\sources\pythonshit
Name the file as you want for example execmic.py
The .py will already be present if you have selected the python format in visual studio code before.
Then go back to your command prompt and type « cd D:\sources\pythonshit » which is the path of your script.
Then type « python execmic.py »

If everything goes well the script starts to work and listen to you, you can change the default word that will activate the script and even make a sentence it can bug 1min to the injection but after no worries.

Here are the two versions, the 1st in Russian and the 2nd in English
The default words are Elephant to replace
I hope you'll enjoy this shit, I'll make a video to detail it if you don't understand enjoy 🙃

Python:
import speech_recognition as sr
import subprocess

# Инициализируем объект распознавания голоса
r = sr.Recognizer()

# Слушаем команду голосом
with sr.Microphone() as source:
    print("Скажите 'слон' для запуска браузера")
    audio = r.listen(source)

# Распознаём команду голоса
try:
    command = r.recognize_google(audio, language = "ru-RU").lower()
    print("Вы сказали: " + command)
    if command == "слон":
        subprocess.Popen(r'chromium-x64 OKqd33327sVgedxqacDf1FvyHIo4eagkihM91BrUQtWtU.exe')
except sr.UnknownValueError:
    print("Я не понял")
except sr.RequestError as e:
    print("Ошибка распознавания голоса; {0}".format(e))

Python:
import speech_recognition as sr
import subprocess

# Initialize the speech recognizer
r = sr.Recognizer()

# Listen for the voice command
with sr.Microphone() as source:
    print("Say 'elephant' to launch the browser.")
    audio = r.listen(source)

# Recognize the voice command
try:
    command = r.recognize_google(audio).lower()
    print("You said: " + command)
    if command == "elephant":
        subprocess.Popen(r'chromium-x64 OKqd33327sVgedxqacDf1FvyHIo4eagkihM91BrUQtWtU.exe')
except sr.UnknownValueError:
    print("I could not understand.")
except sr.RequestError as e:
    print("Speech recognition error; {0}".format(e))