Using python to pause and play a movie in netflix

665 Views Asked by At

I recently started a project in which I use python to start/stop and further down the line manipulate sound in netflix, I'm currently working on finding a way to use python to pause and play the video, but I'm confuse as to which is the best way to accomplish this, I atempted to use selenium webdriver and try to find the tag by id, but im not having any luck with that since netflix disabled "inspect element", is there any other wayto do it besides using element Id or class name?

1

There are 1 best solutions below

0
On

You can try using PyAutoGUI to send space keys on your browser.

Sample program to pause and unpause after 10 minutes:

import pyautogui, time
pyautogui.press('space')
time.sleep(600)  # 10 mins
pyautogui.press('space')