er.org.monte.media.amigaatari.17.1.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.monte.media.amigaatari Show documentation
Show all versions of org.monte.media.amigaatari Show documentation
A library for processing Amiga and Atari still images, video, audio and meta-data.
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.
* IFF Electronic Arts Interchange File Format Read,
* Write
*
*
* Supports the following video encodings:
*
Supported video encodings.
* Op5 ANIM Amiga Animation Decode,
* Encode
* Op7 Short/Long ANIM Amiga
* Animation Decode
* Op8 Short/Long ANIM Amiga
* Animation Decode
* SEQ SEQ Atari Cyber Paint
* Sequence Decode
*
*
* Supports the following audio encodings:
*
Supported audio encodings.
* 8SVX 8SVX, ANIM Pulse Code
* Modulation Decode
*
*
* Provides the following image encodings to javax.imageio:
*
Supported image encodings.
* ILBM IFF Amiga Interleaved Bitmap Decode,
* Encode
* PBM IFF Amiga Packed Bitmap Decode,
* Encode
* PGM PGM Netpbm grayscale
* image Decode
*
*
* @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;
}