From 7acb3d0853d82e560d1c2e38a5c5d67cc1447e60 Mon Sep 17 00:00:00 2001 From: oop7 <110548351+oop7@users.noreply.github.com> Date: Thu, 9 Apr 2026 18:27:33 +0200 Subject: [PATCH] Add default concurrent_fragments setting Introduce a new config key 'concurrent_fragments' with default value 1 in ConfigManager defaults. This exposes a setting to control the number of concurrent fragment downloads/processing, preserving single-fragment behavior unless overridden by user configuration. --- ytsage/utils/ytsage_config_manager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ytsage/utils/ytsage_config_manager.py b/ytsage/utils/ytsage_config_manager.py index d1f27da..e218347 100644 --- a/ytsage/utils/ytsage_config_manager.py +++ b/ytsage/utils/ytsage_config_manager.py @@ -87,6 +87,7 @@ class ConfigManager: "check_app_updates": True, "check_beta_updates": False, "last_update_check": 0, + "concurrent_fragments": 1, "language": "en", "ytdlp_channel": "stable", "force_output_format": False,