chore(video-clips): reduce the number of videoClipWorkers to 1 by default

This commit is contained in:
Yassine Doghri 2024-01-17 09:33:49 +00:00
parent 6cbfec0d7d
commit 95d0861659
1 changed files with 1 additions and 1 deletions

View File

@ -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, * 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. * meaning that they are shared across all podcasts and episodes.
*/ */
public int $videoClipWorkers = 2; public int $videoClipWorkers = 1;
} }