All Downloads are FREE. Search and download functionalities are using the official Maven repository.

er.org.monte.media.amigaatari.17.1.source-code.module-info Maven / Gradle / Ivy

The newest version!
/* @(#)module-info.java
 * Copyright © 2017 Werner Randelshofer, Switzerland. MIT License.
 */

/**
 * A library for processing Amiga and Atari still images, video, audio and meta-data.
 * 

* Supports the following container formats: *

* *
Supported container formats.
IFFElectronic Arts Interchange File FormatRead, * Write
*

* Supports the following video encodings: *

* * * * *
Supported video encodings.
Op5ANIMAmiga AnimationDecode, * Encode
Op7 Short/LongANIMAmiga * AnimationDecode
Op8 Short/LongANIMAmiga * AnimationDecode
SEQSEQAtari Cyber Paint * SequenceDecode
*

* Supports the following audio encodings: *

* *
Supported audio encodings.
8SVX8SVX, ANIMPulse Code * ModulationDecode
*

* Provides the following image encodings to javax.imageio: *

* * * *
Supported image encodings.
ILBMIFFAmiga Interleaved BitmapDecode, * Encode
PBMIFFAmiga Packed BitmapDecode, * Encode
PGMPGMNetpbm grayscale * imageDecode
* * @author Werner Randelshofer */ module org.monte.media.amigaatari { requires java.desktop; requires java.prefs; requires org.monte.media; requires org.monte.media.swing; exports org.monte.media.anim; exports org.monte.media.amigabitmap; exports org.monte.media.amigabitmap.codec.video; exports org.monte.media.eightsvx; exports org.monte.media.iff; exports org.monte.media.ilbm; exports org.monte.media.pbm; exports org.monte.media.seq; provides org.monte.media.av.CodecSpi with org.monte.media.amigabitmap.codec.video.AmigaBitmapCodecSpi; provides org.monte.media.av.MovieWriterSpi with org.monte.media.anim.ANIMWriterSpi; provides javax.imageio.spi.ImageReaderSpi with org.monte.media.pbm.PBMImageReaderSpi, org.monte.media.ilbm.ILBMImageReaderSpi; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy