So right now I'm trying to create a sound assistant (ok google, Alexa blah blah) in python. Works fine, except the sound output from that assistant. In the youtube Tutorial the dude uses os.sytsem("mpg123 audio.mp3"), the audio.mp3 is an mp3 in the same folder as the python file, and it's being created and output with these lines
tts = gTTS(text=audio, lang="de")
tts.save("audio.mp3")
os.system("mpg123 audio.mp3")
But when I run that it gives me the error that mpg123 either has been written wrong, or it couldn't be found. I installed it with pip though. So what can I do about that? Do I want my SOUND assistant to only response in text...are there other audio output ways besides mpg123?