|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<VideoFormat>
com.flagstone.transform.video.VideoFormat
public enum VideoFormat
VideoFormat is used to identify the different encoding formats used for video in Flash and Flash Video files.
| Enum Constant Summary | |
|---|---|
H263
H263 is a low bit-rate compressed format originally developed for video-conferencing by the ITU-T Video Coding Experts Group (VCEG). |
|
SCREEN
Screen Video is a simple format used primarily for compressing sequences of screen shots where only the differences between successive frames are encoded. |
|
VP6
Truemotion VP6 developed by On2 (now Google). |
|
VP6ALPHA
Truemotion VP6 with transparency. |
|
| Method Summary | |
|---|---|
static VideoFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static VideoFormat[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final VideoFormat H263
public static final VideoFormat SCREEN
public static final VideoFormat VP6
public static final VideoFormat VP6ALPHA
| Method Detail |
|---|
public static VideoFormat[] values()
for (VideoFormat c : VideoFormat.values()) System.out.println(c);
public static VideoFormat valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||