mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 09:38:28 +01:00
2.5 KiB
2.5 KiB
title | description | nav_exclude | image |
---|---|---|---|
autoDownloadSettings | Autodownload settings | true | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: autoDownloadSettings
Autodownload settings
Attributes:
Name | Type | Required | Description |
---|---|---|---|
disabled | Bool | Optional | Disable automatic media downloads? |
video_preload_large | Bool | Optional | Whether to preload the first seconds of videos larger than the specified limit |
audio_preload_next | Bool | Optional | Whether to preload the next audio track when you're listening to music |
phonecalls_less_data | Bool | Optional | Whether to enable data saving mode in phone calls |
stories_preload | Bool | Optional | Whether to preload stories; in particular, the first documentAttributeVideo.preload_prefix_size bytes of story videos should be preloaded. |
photo_size_max | int | Yes | Maximum size of photos to preload |
video_size_max | long | Yes | Maximum size of videos to preload |
file_size_max | long | Yes | Maximum size of other files to preload |
video_upload_maxbitrate | int | Yes | Maximum suggested bitrate for uploading videos |
small_queue_active_operations_max | int | Yes | A limit, specifying the maximum number of files that should be downloaded in parallel from the same DC, for files smaller than 20MB. |
large_queue_active_operations_max | int | Yes | A limit, specifying the maximum number of files that should be downloaded in parallel from the same DC, for files bigger than 20MB. |
Type: AutoDownloadSettings
Example:
$autoDownloadSettings = ['_' => 'autoDownloadSettings', 'disabled' => Bool, 'video_preload_large' => Bool, 'audio_preload_next' => Bool, 'phonecalls_less_data' => Bool, 'stories_preload' => Bool, 'photo_size_max' => int, 'video_size_max' => long, 'file_size_max' => long, 'video_upload_maxbitrate' => int, 'small_queue_active_operations_max' => int, 'large_queue_active_operations_max' => int];