Package | Description |
---|---|
org.monte.media |
Defines a framework for media processing and provides default implementations.
|
org.monte.media.anim |
Provides media handlers for the ANIM file format.
|
Modifier and Type | Field and Description |
---|---|
static FormatKey<java.nio.ByteOrder> |
AudioFormatKeys.ByteOrderKey
The compressor name.
|
static FormatKey<java.lang.Integer> |
AudioFormatKeys.ChannelsKey
The numer of ChannelsKey.
|
static FormatKey<java.lang.String> |
VideoFormatKeys.CompressorNameKey
The compressor name.
|
static FormatKey<java.lang.Class> |
VideoFormatKeys.DataClassKey
The data class.
|
static FormatKey<java.lang.Integer> |
VideoFormatKeys.DepthKey
The number of bits per pixel.
|
static FormatKey<java.lang.String> |
FormatKeys.EncodingKey
The EncodingKey.
|
static FormatKey<java.lang.Boolean> |
VideoFormatKeys.FixedFrameRateKey
Whether the frame rate must be fixed.
|
static FormatKey<Rational> |
FormatKeys.FrameRateKey
The number of frames per second.
|
static FormatKey<java.lang.Integer> |
AudioFormatKeys.FrameSizeKey
The size of a frame.
|
static FormatKey<java.lang.Integer> |
VideoFormatKeys.HeightKey
The HeightKey of a video frame.
|
static FormatKey<java.lang.Boolean> |
VideoFormatKeys.InterlaceKey
Whether the video is interlaced.
|
static FormatKey<java.lang.Integer> |
FormatKeys.KeyFrameIntervalKey
The interval between key frames.
|
static FormatKey<FormatKeys.MediaType> |
FormatKeys.MediaTypeKey
The media MediaTypeKey.
|
static FormatKey<java.lang.String> |
FormatKeys.MimeTypeKey
The mime type.
|
static FormatKey<Rational> |
VideoFormatKeys.PixelAspectRatioKey
The pixel aspect ratio WidthKey : HeightKey;
|
static FormatKey<java.lang.Float> |
VideoFormatKeys.QualityKey
Encoding quality.
|
static FormatKey<Rational> |
AudioFormatKeys.SampleRateKey
The number of frames per second.
|
static FormatKey<java.lang.Integer> |
AudioFormatKeys.SampleSizeInBitsKey
The sample size in bits.
|
static FormatKey<java.lang.Boolean> |
AudioFormatKeys.SignedKey
Whether values are signed.
|
static FormatKey<java.lang.Boolean> |
AudioFormatKeys.SilenceBugKey
Whether silence is encoded as -128 instead of 0.
|
static FormatKey<java.lang.Integer> |
VideoFormatKeys.WidthKey
The WidthKey of a video frame.
|
Modifier and Type | Method and Description |
---|---|
java.util.Set<FormatKey> |
Format.getKeys()
Gets the keys of the format as an unmodifiable set.
|
java.util.Map<FormatKey,java.lang.Object> |
Format.getProperties()
Gets the properties of the format as an unmodifiable map.
|
Modifier and Type | Method and Description |
---|---|
int |
FormatKey.compareTo(FormatKey that) |
boolean |
Format.containsKey(FormatKey key) |
Format |
Format.containsKeys(FormatKey... keys)
Returns true if the format has the specified keys.
|
<T> T |
Format.get(FormatKey<T> key) |
<T> T |
Format.get(FormatKey<T> key,
T defaultValue) |
Format |
Format.intersectKeys(FormatKey... keys)
Creates a new format which only has the specified keys (or less).
|
boolean |
Format.matchesWithout(Format that,
FormatKey... without) |
Format |
Format.removeKeys(FormatKey... keys)
Creates a new format without the specified keys.
|
Constructor and Description |
---|
Format(java.util.Map<FormatKey,java.lang.Object> properties)
Creates a new format onlyWith the specified properties.
|
Modifier and Type | Field and Description |
---|---|
static FormatKey<org.monte.media.anim.AmigaVideoFormatKeys.ColorMode> |
AmigaVideoFormatKeys.ColorModeKey |
static FormatKey<java.lang.Integer> |
AmigaVideoFormatKeys.MonitorIdKey
The Amiga monitor id.
|