Class 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 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.
      • 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.