MadelineProtoDocs/old_docs/API_docs_v44/constructors/videoSize.md

957 B

title description image
videoSize videoSize attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: videoSize

Back to constructors index

Attributes:

Name Type Required
type string Yes
location FileLocation Yes
w int Yes
h int Yes
size int Yes
video_start_ts double Optional

Type: VideoSize

Example:

$videoSize = ['_' => 'videoSize', 'type' => 'string', 'location' => FileLocation, 'w' => int, 'h' => int, 'size' => int, 'video_start_ts' => double];

Or, if you're into Lua:

videoSize={_='videoSize', type='string', location=FileLocation, w=int, h=int, size=int, video_start_ts=double}