danog\MadelineProto\EventHandler\Media\Gif
Author: Daniil Gentili daniil@daniil.it
Represents a GIF (or an MPEG4 file without sound).
Properties
$hasStickers
:bool
If true; the current media has attached mask stickers.$duration
:float
Video duration in seconds$supportsStreaming
:bool
Whether the video supports streaming$width
:int
Video width$height
:int
Video height$size
:int
Media filesize$fileName
:string
Media file name$fileExt
:string
Media file extension$creationDate
:int
Media creation date$mimeType
:string
Media MIME type$ttl
:?int
Time-to-live of media$thumbs
:list<array>
Thumbnails$videoThumbs
:list<array>
Video thumbnails$spoiler
:bool
Whether the media should be hidden behind a spoiler$botApiFileId
:string
File ID in bot API format (always present even for users)$botApiFileUniqueId
:string
Unique file ID in bot API format (always present even for users)$encrypted
:bool
Whether this media originates from a secret chat.$thumb
:?danog\MadelineProto\TL\Types\Bytes
Content of thumbnail file (JPEGfile, quality 55, set in a square 90x90) only for secret chats.$thumbHeight
:?int
Thumbnail height only for secret chats.$thumbWidth
:?int
Thumbnail width only for secret chats.$protected
:bool
Whether this media is protected
Method list:
save(): bool
unsave(): bool
getDownloadLink((string|null) $scriptUrl = NULL): string
getStream((callable(float, float, float): voi)|null) $cb = NULL, int $offset = 0, int $end = -1, ?\Amp\Cancellation $cancellation = NULL): \Amp\ByteStream\ReadableStream
downloadToDir(string $dir = NULL, (callable(float, float, float): voi)|null) $cb = NULL, ?\Amp\Cancellation $cancellation = NULL): string
downloadToFile(string $file, (callable(float, float, float): voi)|null) $cb = NULL, ?\Amp\Cancellation $cancellation = NULL): string
getDownloadInfo(): array{ext: string, name: string, mime: string, size: int, InputFileLocation: array, key_fingerprint?: string, key?: string, iv?: string}
Methods:
save(): bool
Add GIF to saved gifs list.
unsave(): bool
Remove GIF from saved gifs list.
getDownloadLink((string|null) $scriptUrl = NULL): string
Gets a download link for any file up to 4GB.
Parameters:
$scriptUrl
:(string|null)
Optional path to custom download script (not needed when running via web)
getStream((callable(float, float, float): voi)|null) $cb = NULL, int $offset = 0, int $end = -1, ?\Amp\Cancellation $cancellation = NULL): \Amp\ByteStream\ReadableStream
Get a readable amp stream with the file contents.
Parameters:
$cb
:(callable(float, float, float): voi)|null)
Progress callback$offset
:int
$end
:int
$cancellation
:?\Amp\Cancellation
See also:
\Amp\Cancellation
\Amp\ByteStream\ReadableStream
downloadToDir(string $dir = NULL, (callable(float, float, float): voi)|null) $cb = NULL, ?\Amp\Cancellation $cancellation = NULL): string
Download the media to working directory or passed path.
Parameters:
$dir
:string
Directory where to download the file$cb
:(callable(float, float, float): voi)|null)
Progress callback$cancellation
:?\Amp\Cancellation
See also:
\Amp\Cancellation
downloadToFile(string $file, (callable(float, float, float): voi)|null) $cb = NULL, ?\Amp\Cancellation $cancellation = NULL): string
Download the media to file.
Parameters:
$file
:string
Downloaded file path$cb
:(callable(float, float, float): voi)|null)
Progress callback$cancellation
:?\Amp\Cancellation
See also:
\Amp\Cancellation
getDownloadInfo(): array{ext: string, name: string, mime: string, size: int, InputFileLocation: array, key_fingerprint?: string, key?: string, iv?: string}
Generated by danog/phpdoc