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.
|
org.monte.media.audio |
Provides media handlers for audio data.
|
org.monte.media.avi |
Provides media handlers for the AVI file format.
|
org.monte.media.converter |
Provides media handlers for the AVI file format.
|
org.monte.media.jpeg |
Provides media handlers for JPEG images and the JFIF file format.
|
org.monte.media.png |
Provides media handlers for the PNG file format.
|
org.monte.media.quicktime |
Provides media handlers for the QuickTime file format.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractAudioCodec
AbstractAudioCodec . |
class |
AbstractCodec
AbstractCodec . |
class |
AbstractVideoCodec
AbstractVideoCodec . |
Modifier and Type | Method and Description |
---|---|
Codec |
Registry.getCodec(Format inputFormat,
Format outputFormat)
Gets a codec which can transcode from the specified input format to the
specified output format.
|
Codec[] |
Registry.getCodecs(Format inputFormat,
Format outputFormat)
Gets all codecs which can transcode from the specified input format to
the specified output format.
|
Codec |
Registry.getDecoder(Format inputFormat)
Gets the first codec which can decode the specified format.
|
Codec[] |
Registry.getDecoders(Format inputFormat)
Gets all codecs which can decode the specified format.
|
Codec |
Registry.getEncoder(Format outputFormat)
Gets the first codec which can encode the specified foramt.
|
Codec[] |
Registry.getEncoders(Format outputFormat)
Gets all codecs which can encode the specified format.
|
Modifier and Type | Class and Description |
---|---|
class |
BitmapCodec
Converts BufferedImage to BitmapImage.
|
Modifier and Type | Class and Description |
---|---|
class |
PCMAudioCodec
PCMAudioCodec performs sign conversion, endian conversion and
quantization conversion of PCM audio data. |
Modifier and Type | Class and Description |
---|---|
class |
AVIPCMAudioCodec
PCMAudioCodec performs sign conversion, endian conversion and
quantization conversion of PCM audio data. |
class |
DIBCodec
DIBCodec encodes a BufferedImage as a Microsoft Device Independent
Bitmap (DIB) into a byte array. |
class |
RunLengthCodec
RunLengthCodec encodes a BufferedImage as a byte[] array. |
class |
TechSmithCodec
TechSmithCodec (tscc) encodes a BufferedImage as a byte[] array. |
class |
ZMBVCodec
Implements the DosBox Capture Codec
"ZMBV" . |
Modifier and Type | Field and Description |
---|---|
protected Codec |
AbstractAVIStream.Track.codec
The codec.
|
Modifier and Type | Method and Description |
---|---|
Codec |
AVIWriter.getCodec(int track)
Returns the codec of the specified track.
|
Modifier and Type | Method and Description |
---|---|
void |
AVIWriter.setCodec(int track,
Codec codec)
Sets the codec for the specified track.
|
Modifier and Type | Class and Description |
---|---|
class |
AdjustTimeCodec
Adjusts the time stamp of the media.
|
class |
CodecChain
CodecChain . |
class |
ColorAdjustCodec
Adjusts the colors of a buffered image.
|
class |
FFRtoVFRConverter
This codec converts frames from a fixed frame rate into a variable frame rate
by coalescing identical frames.
|
class |
FrameRateConverter
This codec converts frames from one frame rate into another.
|
class |
PassThroughCodec
PassThroughCodec passes through all buffers. |
class |
ScaleImageCodec
Scales a buffered image.
|
class |
TrimTimeCodec
PassThroughCodec passes through all buffers in the specified time
range. |
Modifier and Type | Method and Description |
---|---|
static Codec |
CodecChain.createCodecChain(Codec... codecs) |
static Codec |
CodecChain.createCodecChain(java.util.List<Codec> codecs) |
Modifier and Type | Method and Description |
---|---|
static Codec |
CodecChain.createCodecChain(Codec... codecs) |
Modifier and Type | Method and Description |
---|---|
static Codec |
CodecChain.createCodecChain(java.util.List<Codec> codecs) |
Constructor and Description |
---|
CodecChain(Codec first,
Codec second) |
Modifier and Type | Class and Description |
---|---|
class |
JPEGCodec
JPEGCodec encodes a BufferedImage as a byte[] array. |
Modifier and Type | Class and Description |
---|---|
class |
PNGCodec
PNGCodec encodes a BufferedImage as a byte[] array.. |
Modifier and Type | Class and Description |
---|---|
class |
AnimationCodec
Implements the Apple Animation codec.
|
class |
QuickTimePCMAudioCodec
PCMAudioCodec performs sign conversion, endian conversion and
quantization conversion of PCM audio data. |
class |
RawCodec
RawCodec encodes a BufferedImage as a byte[] array. |
Modifier and Type | Field and Description |
---|---|
protected Codec |
AbstractQuickTimeStream.Track.codec
The codec.
|
Modifier and Type | Method and Description |
---|---|
Codec |
QuickTimeWriter.getCodec(int track)
Returns the codec of the specified track.
|
Modifier and Type | Method and Description |
---|---|
void |
QuickTimeWriter.setCodec(int track,
Codec codec)
Sets the codec for the specified track.
|