I want to open a particular video in the background using python. For that, I have done the following coding
chrome= "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s"
webbrowser.get(chrome).open_new("https://www.youtube.com/watch?v=AFNUeUed8Ro&ab_channel=NDTV")
time.sleep(4)
os.system("taskkill /im chrome.exe /f")**
but after opening the URL program does not continue until I manually close the site. And if I beforehand open the chrome browser all works well. But that is not what I want.
I want to open it in the background because I only need audio as my project is for blind people's entertainment which opens sites using gestures only then close using the same.
I suggest you use Selenium instead of Webbrowser package as it has more functionality.
Install Selenium package using
Download Chrome webdriver which matches your version of Chrome from
https://sites.google.com/a/chromium.org/chromedriver/downloads
Place the driver .exe file where you python script is located
Try this script
Don't use time.sleep() in Opencv capture loop because it blocks the capture. If you want to use time delays consider using separate thread. Look at
https://www.tutorialspoint.com/python/python_multithreading.htm