Skip to content

Commit

Permalink
Fix MAX_FILE_SIZE value to be 4GB instead of 4MB
Browse files Browse the repository at this point in the history
  • Loading branch information
AliOsm committed Jun 27, 2024
1 parent c59012d commit 7ea91f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tafrigh"
version = "1.2.7"
version = "1.2.8"
description = "تفريغ النصوص وإنشاء ملفات SRT و VTT باستخدام نماذج Whisper وتقنية wit.ai."
authors = ["EasyBooks <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/audio_splitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from pydub.utils import mediainfo


MAX_FILE_SIZE = 4 * 1024 * 1024
MAX_FILE_SIZE = 4 * 1024 * 1024 * 1024
MAX_FILE_DURATION = 1 * 60 * 60


Expand Down

0 comments on commit 7ea91f4

Please sign in to comment.