Package org.drinkless.tdlib
Class TdApi.Video
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Video
-
- Enclosing class:
- TdApi
public static class TdApi.Video extends TdApi.Object
Describes a video file.
-
-
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.StringfileNameOriginal name of the file; as defined by the sender.booleanhasStickersTrue, if stickers were added to the video.intheightVideo height; as defined by the sender.StringmimeTypeMIME type of the file; as defined by the sender.TdApi.MinithumbnailminithumbnailVideo minithumbnail; may be null.booleansupportsStreamingTrue, if the video is supposed to be streamed.TdApi.ThumbnailthumbnailVideo thumbnail in JPEG or MPEG4 format; as defined by the sender; may be null.TdApi.FilevideoFile containing the video.intwidthVideo width; as defined by the sender.
-
Constructor Summary
Constructors Constructor Description Video()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
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.
-
width
public int width
Video width; as defined by the sender.
-
height
public int height
Video height; as defined by the sender.
-
fileName
public String fileName
Original name of the file; as defined by the sender.
-
mimeType
public String mimeType
MIME type of the file; as defined by the sender.
-
hasStickers
public boolean hasStickers
True, if stickers were added to the video. The list of corresponding sticker sets can be received using getAttachedStickerSets.
-
supportsStreaming
public boolean supportsStreaming
True, if the video is supposed to be streamed.
-
minithumbnail
public TdApi.Minithumbnail minithumbnail
Video minithumbnail; may be null.
-
thumbnail
public TdApi.Thumbnail thumbnail
Video thumbnail in JPEG or MPEG4 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
-
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 supposed 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 Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-