def call_recorder(): """ Calls the screen recorder class to start the recording of the automation. """ rec = sr.ScreenRecorder(0, 0, pag.size()[0], pag.size()[1] - 150) rec.capture() rec.stop_capture()
def call_recorder(): """ Calls the screen recorder class to start the recording of the automation. """ rec = sr.ScreenRecorder() rec.capture() rec.stop_capture()
def call_recorder(): """ Calls the screen recorder class to start the recording of the automation. """ rec = sr.ScreenRecorder(80, 20, int(pag.size()[0] / 1.5), int(pag.size()[1])) rec.capture() rec.stop_capture()