Package org.drinkless.tdlib
Class TdApi.VideoNote
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.VideoNote
-
- Enclosing class:
- TdApi
public static class TdApi.VideoNote extends TdApi.Object
Describes a video note. The video must be equal in width and height, cropped to a circle, and stored in MPEG4 format.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.intdurationDuration of the video, in seconds; as defined by the sender.intlengthVideo width and height; as defined by the sender.TdApi.MinithumbnailminithumbnailVideo minithumbnail; may be null.TdApi.ThumbnailthumbnailVideo thumbnail in JPEG format; as defined by the sender; may be null.TdApi.FilevideoFile containing the video.
-
Constructor Summary
Constructors Constructor Description VideoNote()Describes a video note.VideoNote(int duration, int length, TdApi.Minithumbnail minithumbnail, TdApi.Thumbnail thumbnail, TdApi.File video)Describes a video note.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
duration
public int duration
Duration of the video, in seconds; as defined by the sender.
-
length
public int length
Video width and height; as defined by the sender.
-
minithumbnail
public TdApi.Minithumbnail minithumbnail
Video minithumbnail; may be null.
-
thumbnail
public TdApi.Thumbnail thumbnail
Video thumbnail in JPEG format; as defined by the sender; may be null.
-
video
public TdApi.File video
File containing the video.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
VideoNote
public VideoNote()
Describes a video note. The video must be equal in width and height, cropped to a circle, and stored in MPEG4 format.
-
VideoNote
public VideoNote(int duration, int length, TdApi.Minithumbnail minithumbnail, TdApi.Thumbnail thumbnail, TdApi.File video)Describes a video note. The video must be equal in width and height, cropped to a circle, and stored in MPEG4 format.- Parameters:
duration- Duration of the video, in seconds; as defined by the sender.length- Video width and height; as defined by the sender.minithumbnail- Video minithumbnail; may be null.thumbnail- Video thumbnail in JPEG format; as defined by the sender; may be null.video- File containing the video.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-