diff --git a/README.md b/README.md index 9708042..0d88f79 100644 --- a/README.md +++ b/README.md @@ -67,9 +67,9 @@ or something went wrong. checking [available options](https://github.com/yt-dlp/yt-dlp/blob/master/yt_dlp/YoutubeDL.py#L180) . 2. Default max simultaneous video downloads by worker service is 2. Change - the `MAX_SIMULTANEOUS_DOWNLOADS` - variable in `envs/.env_worker` to desired value but keep in mind `yt-dlp` may glitch - when the value is high. + the `MAX_SIMULTANEOUS_DOWNLOADS` variable in `envs/.env_worker` to desired value but + keep in mind that default mounted volume size is 7168m (7GB) in `docker-compose.yml` so + it may be not enough if you download a lot of large videos at once. 3. Worker service (particularly the FFmpeg process) makes a JPEG thumbnail from the video. It's needed when you choose to upload the video to the Telegram chat. By default, it tries to make it on the 10th second of the video, but if the video is diff --git a/docker-compose.yml b/docker-compose.yml index 3f77308..b359b40 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -89,4 +89,4 @@ volumes: driver_opts: type: "tmpfs" device: "tmpfs" - o: "size=7120m,uid=1000" + o: "size=7168m,uid=1000"