diff --git a/download_video.py b/download_video.py index 9d0b7ac..05ccce7 100644 --- a/download_video.py +++ b/download_video.py @@ -33,5 +33,5 @@ def download_video(info): if __name__ == "__main__": infos = generate_infos() - with ThreadPoolExecutor(max_workers=os.cpu_count() - 2) as executor: - executor.map(download_video, infos) \ No newline at end of file + with ThreadPoolExecutor(max_workers=os.cpu_count()) as executor: + executor.map(download_video, infos)