Package org.drinkless.tdlib
Class TdApi.Video
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.Video
- Enclosing class:
- TdApi
Describes a video file.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIdentifier uniquely determining type of the object.intDuration of the video, in seconds; as defined by the sender.Original name of the file; as defined by the sender.booleanTrue, if stickers were added to the video.intVideo height; as defined by the sender.MIME type of the file; as defined by the sender.Video minithumbnail; may be null.booleanTrue, if the video is expected to be streamed.Video thumbnail in JPEG or MPEG4 format; as defined by the sender; may be null.File containing the video.intVideo width; as defined by the sender. -
Constructor Summary
ConstructorsConstructorDescriptionVideo()Describes a video file.Video(int duration, int width, int height, String fileName, String mimeType, boolean hasStickers, boolean supportsStreaming, TdApi.Minithumbnail minithumbnail, TdApi.Thumbnail thumbnail, TdApi.File video) Describes a video file. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
Field Details
-
duration
public int durationDuration of the video, in seconds; as defined by the sender. -
width
public int widthVideo width; as defined by the sender. -
height
public int heightVideo height; as defined by the sender. -
fileName
Original name of the file; as defined by the sender. -
mimeType
MIME type of the file; as defined by the sender. -
hasStickers
public boolean hasStickersTrue, if stickers were added to the video. The list of corresponding sticker sets can be received using getAttachedStickerSets. -
supportsStreaming
public boolean supportsStreamingTrue, if the video is expected to be streamed. -
minithumbnail
Video minithumbnail; may be null. -
thumbnail
Video thumbnail in JPEG or MPEG4 format; as defined by the sender; may be null. -
video
File containing the video. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
Video
public Video()Describes a video file. -
Video
public Video(int duration, int width, int height, String fileName, String mimeType, boolean hasStickers, boolean supportsStreaming, TdApi.Minithumbnail minithumbnail, TdApi.Thumbnail thumbnail, TdApi.File video) Describes a video file.- Parameters:
duration- Duration of the video, in seconds; as defined by the sender.width- Video width; as defined by the sender.height- Video height; as defined by the sender.fileName- Original name of the file; as defined by the sender.mimeType- MIME type of the file; as defined by the sender.hasStickers- True, if stickers were added to the video. The list of corresponding sticker sets can be received using getAttachedStickerSets.supportsStreaming- True, if the video is expected to be streamed.minithumbnail- Video minithumbnail; may be null.thumbnail- Video thumbnail in JPEG or MPEG4 format; as defined by the sender; may be null.video- File containing the video.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-