I'm a beginner on python and I want to play a youtube video with python, but i also want to put master volume to the max. I looked a lot of online programbut they didn't work. if someone could help me, it would be cool.
Thanks
I'm a beginner on python and I want to play a youtube video with python, but i also want to put master volume to the max. I looked a lot of online programbut they didn't work. if someone could help me, it would be cool.
Thanks
You need to make sure that you have the right libraries. For playing the Youtube video I suggest using pywhatkit
#pip install pywhatkit in command prompt
import pywhatkit as kit
kit.playonyt('Rolling in the deep')
Please read the documentation of the library to fully comprehend its uses and additional features incase you might need them. Here is a video for reference in case you get stuck.
For the volume, this should give you an outline if not answer your question, video tutorial is here. (Bonus Video - to use this you will need to learn OpenCV).