mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-12 16:47:24 +01:00
1.4 KiB
1.4 KiB
title | description |
---|---|
decryptedMessageMediaVideo | decryptedMessageMediaVideo attributes, type and example |
Constructor: decryptedMessageMediaVideo_8
Attributes:
Name | Type | Required |
---|---|---|
thumb | bytes | Yes |
thumb_w | int | Yes |
thumb_h | int | Yes |
duration | int | Yes |
w | int | Yes |
h | int | Yes |
size | int | Yes |
key | bytes | Yes |
iv | bytes | Yes |
Type: DecryptedMessageMedia
Example:
$decryptedMessageMediaVideo_8 = ['_' => 'decryptedMessageMediaVideo', 'thumb' => bytes, 'thumb_w' => int, 'thumb_h' => int, 'duration' => int, 'w' => int, 'h' => int, 'size' => int, 'key' => bytes, 'iv' => bytes, ];
PWRTelegram json-encoded version:
{"_":"decryptedMessageMediaVideo","thumb":"bytes","thumb_w":"int","thumb_h":"int","duration":"int","w":"int","h":"int","size":"int","key":"bytes","iv":"bytes"}
Or, if you're into Lua:
decryptedMessageMediaVideo_8={_='decryptedMessageMediaVideo', thumb=bytes, thumb_w=int, thumb_h=int, duration=int, w=int, h=int, size=int, key=bytes, iv=bytes, }