force matroska v1 compatibility | This prevents the user from choosing settings that stretch the matroska file specifications to a questionable extent. It also prevents the usage of structures that are only available in Matroska v2, for example SimpleBlocks. |
force matroska v2 compatibility | This prevents the user from choosing settings that stretch the matroska file specifications to a questionable extent. When Matroska v2 is enabled, SimpleBlocks are used when possible, significantly reducing overhead |
write PrevClusterSize/Position | choose whether or not the PrevClusterSize / Position Element is written into each cluster. See Matroska specs for more information. Simply said, software for recovering broken matroska files can make use of this, but it is rather useless for intact files. |
index clusters in seekhead | If checked, one seekhead entry will be added for each cluster. It consumes about 18 bytes per entry. When size of headers is set to automatic, this setting is disabled (indexing clusters makes the estimation how much space is needed hard). Warning: Very small clusters in connection with very large files cause extensive memory usage of AVI-Mux GUI if this setting is used. For example, selecting a size of 16 kB per cluster when muxing a 4,4 GB file took 450 MB RAM at the end of the muxing process)! recommended: disabled |
maximum cluster size | set the maximum size of clusters here. Note that some clusters might exceed this size by a few bytes. Lower values reduce the risk of losing larger parts of the stream if a file is damaged, but cause more overhead and more memory consumption when muxing. |
maximum cluster length | Here you can define the maximum length of a cluster, in time. Warning: You use settings larger than 30k units (see Timecode Scale settings) on your own risk! |
limit first cluster to 30ku | When allowing clusters to span over a period of more than 30ku, you can limit the first cluster to 30ku. This may fix compatibility problems you introduce by allowing such clusters in the first place |
always write DisplayWidth/Height | The DisplayWidth/Height elements contain the output size of the movie (which is different from the encoding resolution for anamorphically encoded videos). If the movie is not encoded anamorphically, those elements can be dropped. However, some earlier versions of TCMP do not like this at all, and setting the aspect ration later (e.g. using Jory 'jcsston' Stone's Matroska Shell Extentions) would be impossible. Check this setting to always write the DisplayWidth/Height elements. recommended: enabled |
timecode scale | Defines the accuracy timecodes are stored at. It is given as a multiple of nanoseconds. That means, a value of 1000000 causes timecodes to be stored in milliseconds. Audiostreams are internally handled using microseconds, so using values below 1000 here won't increase
timecode accuracy. You can set the desired timecode scale separately for files that contain video (mkv) and files that only contain audio (mka). |
write 2 copies of Tracks | The Tracks element, containing the description of the type of each track in the file, will be stored twice, so that the file still can work if one copy gets damaged. |
width of floats in bits | Allows to select either 32 or 64 bit floats. Floats of 32 bit have an accuracy of about 2^-24, meaning, when using 32 bit floats, the segment duration could be
off by 1ms for a file lasting 4h30min. If that is not acceptable, use 64 bit floats
along with a lower setting for TimecodeScale. However, some applications might need to be updated to handle 64 bit floats. 80 bit floats used to be allowed in the matroska specification, but were removed. Consequently, AVI-Mux GUI can read 80 bit floats, but can only write them if you disable matroska v1 as well as matroska v2 compatibility. |
randomize element order | If this setting is used, some elements will be randomly ordered inside their parent element. The purpose is only to find lazy coders, who assume a certain element order inside Matroska files in their own parsers, even though the format doesn't
require it. If using this setting results in a file a certain application can't handle, keep the file and contact the author of the application in question. |
index non-Clusters in 1st Seekhead | When Clusters are index in the SeekHead, the first small SeekHead is usually not large enough to hold references to all Level 1 - elements. When this setting is checked, references to non-Clusters (Tags, SegmentInfo, Tracks, Cues, Chapters) will always be put into the first SeekHead, otherwise it will be put into the 2nd SeekHead, if it is present.
Besides looking for b0rked Matroska parsers or intentionally creating certain test files, there is no reason to disable this setting. |
size of headers | Defines how much space is at least reserved for headers which are written before the first cluster. When this value is too big, you waste space, when it is too small, Chapters, Tags and Cues must be written to the end of the file, instead of the beginning, which makes opening them a bit slower on very-slow-seek-media, like Princo DVD-R, and which makes it more inconvenient to verify such files manually, for example in a hex editor or an EBML Tree Viewer. See here for remarks concerning this feature. |
hard linking | If the output file is split into several parts, hard linking makes it easier for a matroska parser to realize that those parts are in fact one file. Some players will even pretend those parts to be one big file. This results in SegmentFamily, PrevUID und NextUID being written to output files. |
stripe stream headers if possible | AC3, MP3 and DTS audio frames begin with specific sequences of bytes which are the same for each frame. Matroska allows to remove such specific bytes in order to save space. For AC3, you gain one byte per 16ms, for DTS, you typically gain 1 byte per 2.05ms. This is called "header striping". It also works with MPEG4/ASP video in native mode and gains 4 bytes per frame then. |
allow CodecID "A_AAC" | Write simply A_AAC and use WAVEFORMATEX private data as codec private instead of using A_AAC/MPEGx/xxx[/SBR]. See Matroska Codec Specs for more information. |