From 84868c4afa7f230659adba3a0be3a802ee87f61b Mon Sep 17 00:00:00 2001 From: Kharec Date: Sun, 14 Dec 2025 09:37:28 +0100 Subject: [PATCH] feat: add default chunk size --- auditui/constants.py | 1 + 1 file changed, 1 insertion(+) diff --git a/auditui/constants.py b/auditui/constants.py index 983a1f0..b0ada19 100644 --- a/auditui/constants.py +++ b/auditui/constants.py @@ -7,6 +7,7 @@ CACHE_DIR = Path.home() / ".cache" / "auditui" / "books" DOWNLOAD_URL = "https://cde-ta-g7g.amazon.com/FionaCDEServiceEngine/FSDownloadContent" DEFAULT_CODEC = "LC_128_44100_stereo" MIN_FILE_SIZE = 1024 * 1024 +DEFAULT_CHUNK_SIZE = 8192 TABLE_COLUMNS = ("Title", "Author", "Length", "Progress")