java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.VideoNote
- Enclosing class:
- TdApi
Describes a video note. The video must be equal in width and height,
cropped to a circle, and stored in MPEG4 format.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Identifier uniquely determining type of the object.int
Duration of the video, in seconds; as defined by the sender.int
Video width and height; as defined by the sender.Video minithumbnail; may be null.Result of speech recognition in the video note; may be null.Video thumbnail in JPEG format; as defined by the sender; may be null.File containing the video.byte[]
A waveform representation of the video note's audio in 5-bit format; may be empty if unknown. -
Constructor Summary
ConstructorDescriptionDescribes a video note.VideoNote
(int duration, byte[] waveform, int length, TdApi.Minithumbnail minithumbnail, TdApi.Thumbnail thumbnail, TdApi.SpeechRecognitionResult speechRecognitionResult, TdApi.File video) Describes a video note.Describes a video note. -
Method Summary
Modifier and TypeMethodDescriptionboolean
int
Returns an identifier uniquely determining type of the object.int
hashCode()
void
serialize
(DataOutput output) Serialize the TDLib classMethods inherited from class it.tdlight.jni.TdApi.Object
serialize, toString
-
Field Details
-
duration
public int durationDuration of the video, in seconds; as defined by the sender. -
waveform
public byte[] waveformA waveform representation of the video note's audio in 5-bit format; may be empty if unknown. -
length
public int lengthVideo 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. -
speechRecognitionResult
Result of speech recognition in the video note; may be null. -
video
File containing the video. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
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, byte[] waveform, int length, TdApi.Minithumbnail minithumbnail, TdApi.Thumbnail thumbnail, TdApi.SpeechRecognitionResult speechRecognitionResult, 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.waveform
- A waveform representation of the video note's audio in 5-bit format; may be empty if unknown.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.speechRecognitionResult
- Result of speech recognition in the video note; may be null.video
- File containing the video.
-
VideoNote
Describes a video note. The video must be equal in width and height, cropped to a circle, and stored in MPEG4 format.- Parameters:
input
- Serialized input- Throws:
IOException
- the deserialization failed
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.Object
Returns an identifier uniquely determining type of the object.- Specified by:
getConstructor
in classTdApi.Object
- Returns:
- this.CONSTRUCTOR
-
serialize
Serialize the TDLib class- Specified by:
serialize
in classTdApi.Object
- Parameters:
output
- output data stream- Throws:
IOException
- the serialization failed
-
equals
-
hashCode
public int hashCode()
-