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.
This commit is contained in:
oop7
2026-04-09 18:27:33 +02:00
parent 47dafe565f
commit 7acb3d0853
+1
View File
@@ -87,6 +87,7 @@ class ConfigManager:
"check_app_updates": True, "check_app_updates": True,
"check_beta_updates": False, "check_beta_updates": False,
"last_update_check": 0, "last_update_check": 0,
"concurrent_fragments": 1,
"language": "en", "language": "en",
"ytdlp_channel": "stable", "ytdlp_channel": "stable",
"force_output_format": False, "force_output_format": False,