Adlib Tracker II module
From Just Solve the File Format Problem
(Difference between revisions)
(merging tiny modules) |
|||
Line 12: | Line 12: | ||
The compression algorithm used for the second part can be identified from the format version. Versions 1 & 5 are compressed with [[SixPack]]; 2 & 6 with [[LZW]]; 3 & 7 with [[LZSS]]. Versions 4 & 8 use no compression. | The compression algorithm used for the second part can be identified from the format version. Versions 1 & 5 are compressed with [[SixPack]]; 2 & 6 with [[LZW]]; 3 & 7 with [[LZSS]]. Versions 4 & 8 use no compression. | ||
+ | |||
+ | == Software == | ||
+ | |||
+ | === Creation === | ||
+ | * [http://www.adlibtracker.net/ Adlib Tracker II] | ||
+ | |||
+ | === Playback === | ||
+ | |||
+ | * [http://adplug.sourceforge.net/ AdPlug] | ||
== Information == | == Information == | ||
Line 17: | Line 26: | ||
*[http://code.google.com/p/at2/source/browse/trunk/docs/techinfo.doc#185 A2M file format description] | *[http://code.google.com/p/at2/source/browse/trunk/docs/techinfo.doc#185 A2M file format description] | ||
*[http://code.google.com/p/at2/source/browse/trunk/docs/techinfo.doc#910 A2T file format description] | *[http://code.google.com/p/at2/source/browse/trunk/docs/techinfo.doc#910 A2T file format description] | ||
+ | |||
+ | == Links == | ||
+ | |||
+ | * [ftp://ftp.modland.com/pub/modules/Ad%20Lib/AdLib%20Tracker%202/ Example Adlib Tracker II modules] | ||
+ | * [ftp://ftp.modland.com/pub/modules/Ad%20Lib/AdLib%20Tracker%202%20(v9%20-%20v11)/ Example Adlib Tracker II modules (v9-v11)] | ||
+ | |||
+ | == See Also == | ||
+ | |||
+ | * [[Adlib Tracker II instrument]] | ||
+ | * [[Adlib Tracker II instrument bank]] | ||
+ | * [[Adlib Tracker II pattern]] |
Revision as of 13:32, 29 November 2012
Contents |
Description
.a2m files are modules produced by Adlib Tracker II. Adlib Tracker II can also produce "tiny" modules, which have the file extension .a2t
The file format consists of two parts - a header containing authenticity information such as CRC and the format version, which is ended by one or more values containing the length of the second section. The second section contains the compressed data.
The compression algorithm used for the second part can be identified from the format version. Versions 1 & 5 are compressed with SixPack; 2 & 6 with LZW; 3 & 7 with LZSS. Versions 4 & 8 use no compression.