|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<VideoMetadataType> magoffin.matt.meta.video.VideoMetadataType
public enum VideoMetadataType
Metadata types for video media.
Enum Constant Summary | |
---|---|
AUDIO_FORMAT
The audio format, such as codec, frequency, bits, etc. |
|
DURATION
The total length of the video, in milliseconds. |
|
DURATION_TIME
The total lenght of the video, in HH:MM:SS.F format. |
|
FPS
The frame rate of the video in frames/second. |
|
HEIGHT
The height of the video, in pixels. |
|
POSTER
A poster image from the video, as a MetadataImage . |
|
VIDEO_FORMAT
The video format, such as codec, quality, etc. |
|
WIDTH
The width of the video, in pixels. |
Method Summary | |
---|---|
java.lang.Class<?> |
getObjectType()
Get the type of object this metadata represents. |
static VideoMetadataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static VideoMetadataType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final VideoMetadataType AUDIO_FORMAT
public static final VideoMetadataType DURATION
public static final VideoMetadataType DURATION_TIME
public static final VideoMetadataType FPS
public static final VideoMetadataType HEIGHT
public static final VideoMetadataType POSTER
MetadataImage
.
public static final VideoMetadataType VIDEO_FORMAT
public static final VideoMetadataType WIDTH
Method Detail |
---|
public static final VideoMetadataType[] values()
for(VideoMetadataType c : VideoMetadataType.values()) System.out.println(c);
public static VideoMetadataType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namepublic java.lang.Class<?> getObjectType()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |