mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-22 09:26:37 +03:00
Support sending 4GB files (#3891)
This commit is contained in:
parent
db3faedbfc
commit
362d06654f
|
@ -1341,11 +1341,8 @@ def get_appropriated_part_size(file_size):
|
||||||
return 128
|
return 128
|
||||||
if file_size <= 786432000: # 750MB
|
if file_size <= 786432000: # 750MB
|
||||||
return 256
|
return 256
|
||||||
if file_size <= 2097152000: # 2000MB
|
|
||||||
return 512
|
return 512
|
||||||
|
|
||||||
raise ValueError('File size too large')
|
|
||||||
|
|
||||||
|
|
||||||
def encode_waveform(waveform):
|
def encode_waveform(waveform):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user