From 9f661cb786996b9aa3ae11c7faa5a530d04770f8 Mon Sep 17 00:00:00 2001 From: Sun Cheng Date: Mon, 2 Mar 2026 19:14:50 +0800 Subject: [PATCH] increse download chunk size --- queue.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/queue.go b/queue.go index 6b5f5ed..f9736f6 100644 --- a/queue.go +++ b/queue.go @@ -416,7 +416,7 @@ func (q *DownloadQueue) processVideoMessageEntry(ctx context.Context, qEntry *Do // Download with progress offset := int64(0) - chunkSize := int64(1024 * 1024) // 1MB chunks + chunkSize := int64(1024 * 1024 * 10) // 10MB chunks lastPercent := 0 written := int64(0)