From 95d086165976cc3e849ba5b0bece47495448f6bf Mon Sep 17 00:00:00 2001 From: Yassine Doghri Date: Wed, 17 Jan 2024 09:33:49 +0000 Subject: [PATCH] chore(video-clips): reduce the number of videoClipWorkers to 1 by default --- modules/Admin/Config/Admin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Admin/Config/Admin.php b/modules/Admin/Config/Admin.php index 4c289d9c..56741428 100644 --- a/modules/Admin/Config/Admin.php +++ b/modules/Admin/Config/Admin.php @@ -20,5 +20,5 @@ class Admin extends BaseConfig * Number of maximum ffmpeg processes to spawn in parallel when generating video clips. Processes are instance wide, * meaning that they are shared across all podcasts and episodes. */ - public int $videoClipWorkers = 2; + public int $videoClipWorkers = 1; }