Package video.api.client.api.models
Class VideostatusEncodingMetadata
java.lang.Object
video.api.client.api.models.VideostatusEncodingMetadata
- All Implemented Interfaces:
java.io.Serializable
public class VideostatusEncodingMetadata
extends java.lang.Object
implements java.io.Serializable
VideostatusEncodingMetadata
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringSERIALIZED_NAME_ASPECT_RATIOstatic java.lang.StringSERIALIZED_NAME_AUDIO_CODECstatic java.lang.StringSERIALIZED_NAME_BITRATEstatic java.lang.StringSERIALIZED_NAME_DURATIONstatic java.lang.StringSERIALIZED_NAME_FRAMERATEstatic java.lang.StringSERIALIZED_NAME_HEIGHTstatic java.lang.StringSERIALIZED_NAME_SAMPLERATEstatic java.lang.StringSERIALIZED_NAME_VIDEO_CODECstatic java.lang.StringSERIALIZED_NAME_WIDTH -
Constructor Summary
Constructors Constructor Description VideostatusEncodingMetadata() -
Method Summary
Modifier and Type Method Description VideostatusEncodingMetadataaspectRatio(java.lang.String aspectRatio)VideostatusEncodingMetadataaudioCodec(java.lang.String audioCodec)VideostatusEncodingMetadatabitrate(java.math.BigDecimal bitrate)VideostatusEncodingMetadataduration(java.lang.Integer duration)booleanequals(java.lang.Object o)VideostatusEncodingMetadataframerate(java.lang.Integer framerate)java.lang.StringgetAspectRatio()Get aspectRatiojava.lang.StringgetAudioCodec()The method used to compress and decompress digital audio for your video.java.math.BigDecimalgetBitrate()The number of bits processed per second.java.lang.IntegergetDuration()The length of the video.java.lang.IntegergetFramerate()The frequency with which consecutive images or frames appear on a display.java.lang.IntegergetHeight()The height of the video in pixels.java.lang.IntegergetSamplerate()How many samples per second a digital audio system uses to record an audio signal.java.lang.StringgetVideoCodec()The method used to compress and decompress digital video.java.lang.IntegergetWidth()The width of the video in pixels.inthashCode()VideostatusEncodingMetadataheight(java.lang.Integer height)VideostatusEncodingMetadatasamplerate(java.lang.Integer samplerate)voidsetAspectRatio(java.lang.String aspectRatio)voidsetAudioCodec(java.lang.String audioCodec)voidsetBitrate(java.math.BigDecimal bitrate)voidsetDuration(java.lang.Integer duration)voidsetFramerate(java.lang.Integer framerate)voidsetHeight(java.lang.Integer height)voidsetSamplerate(java.lang.Integer samplerate)voidsetVideoCodec(java.lang.String videoCodec)voidsetWidth(java.lang.Integer width)java.lang.StringtoString()VideostatusEncodingMetadatavideoCodec(java.lang.String videoCodec)VideostatusEncodingMetadatawidth(java.lang.Integer width)Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Field Details
-
SERIALIZED_NAME_WIDTH
public static final java.lang.String SERIALIZED_NAME_WIDTH- See Also:
- Constant Field Values
-
SERIALIZED_NAME_HEIGHT
public static final java.lang.String SERIALIZED_NAME_HEIGHT- See Also:
- Constant Field Values
-
SERIALIZED_NAME_BITRATE
public static final java.lang.String SERIALIZED_NAME_BITRATE- See Also:
- Constant Field Values
-
SERIALIZED_NAME_DURATION
public static final java.lang.String SERIALIZED_NAME_DURATION- See Also:
- Constant Field Values
-
SERIALIZED_NAME_FRAMERATE
public static final java.lang.String SERIALIZED_NAME_FRAMERATE- See Also:
- Constant Field Values
-
SERIALIZED_NAME_SAMPLERATE
public static final java.lang.String SERIALIZED_NAME_SAMPLERATE- See Also:
- Constant Field Values
-
SERIALIZED_NAME_VIDEO_CODEC
public static final java.lang.String SERIALIZED_NAME_VIDEO_CODEC- See Also:
- Constant Field Values
-
SERIALIZED_NAME_AUDIO_CODEC
public static final java.lang.String SERIALIZED_NAME_AUDIO_CODEC- See Also:
- Constant Field Values
-
SERIALIZED_NAME_ASPECT_RATIO
public static final java.lang.String SERIALIZED_NAME_ASPECT_RATIO- See Also:
- Constant Field Values
-
-
Constructor Details
-
VideostatusEncodingMetadata
public VideostatusEncodingMetadata()
-
-
Method Details
-
width
-
getWidth
@Nullable public java.lang.Integer getWidth()The width of the video in pixels.- Returns:
- width
-
setWidth
public void setWidth(java.lang.Integer width) -
height
-
getHeight
@Nullable public java.lang.Integer getHeight()The height of the video in pixels.- Returns:
- height
-
setHeight
public void setHeight(java.lang.Integer height) -
bitrate
-
getBitrate
@Nullable public java.math.BigDecimal getBitrate()The number of bits processed per second.- Returns:
- bitrate
-
setBitrate
public void setBitrate(java.math.BigDecimal bitrate) -
duration
-
getDuration
@Nullable public java.lang.Integer getDuration()The length of the video.- Returns:
- duration
-
setDuration
public void setDuration(java.lang.Integer duration) -
framerate
-
getFramerate
@Nullable public java.lang.Integer getFramerate()The frequency with which consecutive images or frames appear on a display. Shown in this API as frames per second (fps).- Returns:
- framerate
-
setFramerate
public void setFramerate(java.lang.Integer framerate) -
samplerate
-
getSamplerate
@Nullable public java.lang.Integer getSamplerate()How many samples per second a digital audio system uses to record an audio signal. The higher the rate, the higher the frequencies that can be recorded. They are presented in this API using hertz.- Returns:
- samplerate
-
setSamplerate
public void setSamplerate(java.lang.Integer samplerate) -
videoCodec
-
getVideoCodec
@Nullable public java.lang.String getVideoCodec()The method used to compress and decompress digital video. API Video supports all codecs in the libavcodec library.- Returns:
- videoCodec
-
setVideoCodec
public void setVideoCodec(java.lang.String videoCodec) -
audioCodec
-
getAudioCodec
@Nullable public java.lang.String getAudioCodec()The method used to compress and decompress digital audio for your video.- Returns:
- audioCodec
-
setAudioCodec
public void setAudioCodec(java.lang.String audioCodec) -
aspectRatio
-
getAspectRatio
@Nullable public java.lang.String getAspectRatio()Get aspectRatio- Returns:
- aspectRatio
-
setAspectRatio
public void setAspectRatio(java.lang.String aspectRatio) -
equals
public boolean equals(java.lang.Object o)- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-