From 5087055ce4eab5b99568adf39d29f61fde6694f7 Mon Sep 17 00:00:00 2001 From: abhiTronix Date: Sun, 10 Sep 2023 17:54:44 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Maintenance:=20Fixed=20typ?= =?UTF-8?q?os.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vidgear/gears/camgear.py | 2 -- vidgear/gears/streamgear.py | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/vidgear/gears/camgear.py b/vidgear/gears/camgear.py index 613792629..096de933b 100644 --- a/vidgear/gears/camgear.py +++ b/vidgear/gears/camgear.py @@ -220,7 +220,6 @@ def __init__( time_delay=0, **options ): - """ This constructor method initializes the object state and attributes of the CamGear class. @@ -449,7 +448,6 @@ def __update(self): # or frames runs out # if the thread indicator variable is set, stop the thread while not self.__terminate.is_set(): - # stream not read yet self.__stream_read.clear() diff --git a/vidgear/gears/streamgear.py b/vidgear/gears/streamgear.py index 7d95c9191..315d66feb 100644 --- a/vidgear/gears/streamgear.py +++ b/vidgear/gears/streamgear.py @@ -79,8 +79,9 @@ def __init__( format (str): select the adaptive HTTP streaming format(DASH and HLS). custom_ffmpeg (str): assigns the location of custom path/directory for custom FFmpeg executables. logging (bool): enables/disables logging. - stream_params (dict): provides the flexibility to control supported internal parameters and FFmpeg properities. + stream_params (dict): provides the flexibility to control supported internal parameters and FFmpeg properties. """ + # print current version logcurr_vidgear_ver(logging=logging) @@ -873,7 +874,6 @@ def __generate_dash_stream(self, input_params, output_params): return (input_params, output_params) def __Build_n_Execute(self, input_params, output_params): - """ An Internal function that launches FFmpeg subprocess and pipelines commands.