diff --git a/src/recorders/video_capture.py b/src/recorders/video_capture.py index 6c852c4..6cf03d5 100644 --- a/src/recorders/video_capture.py +++ b/src/recorders/video_capture.py @@ -54,6 +54,13 @@ class VideoCapture: if self is not None: self.internal.release() + def release(self): + """ + Release cameras + """ + if self is not None: + self.internal.release() + def read_frame(self): """ Reads a frame, returns the frame and an attempted grayscale conversion of