Created
August 4, 2022 04:49
-
-
Save Abhayparashar31/b229184b1aa93a4aaba4cfa94b1535b4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cv2 | |
import numpy as np | |
import pyautogui | |
# screen resolution | |
SCREEN_SIZE = tuple(pyautogui.size()) | |
# define the codec | |
fourcc = cv2.VideoWriter_fourcc('M','J','P','G') | |
# frames per second | |
fps = 12.0 | |
# recording time in seconds | |
record_seconds = 20 | |
# write object for video | |
out = cv2.VideoWriter( "video.mp4", fourcc, fps, (SCREEN_SIZE)) | |
''' | |
capture screenshots and write then to a file in a loop until | |
the seconds are passes or the user clicks the "q" button. | |
''' | |
for i in range(int(record_seconds * fps)): | |
# create a screenshot | |
img = pyautogui.screenshot(region=(0, 0, 500, 900)) | |
# convert pixels into an numpy array | |
frame = np.array(img) | |
# convert colors from BGR to RGB | |
frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB) | |
# write the frame | |
out.write(frame) | |
# show the frame | |
cv2.imshow("video frame", frame) | |
# if the user clicks q, it exits | |
if cv2.waitKey(1) == ord("q"): | |
break | |
# make sure everything is closed when exited | |
cv2.destroyAllWindows() | |
out.release() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment