You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

129 lines
3.4KB

  1. \input texinfo @c -*- texinfo -*-
  2. @settitle NUT
  3. @titlepage
  4. @center @titlefont{NUT}
  5. @end titlepage
  6. @top
  7. @contents
  8. @chapter Description
  9. NUT is a low overhead generic container format. It stores audio, video,
  10. subtitle and user-defined streams in a simple, yet efficient, way.
  11. It was created by a group of FFmpeg and MPlayer developers in 2003
  12. and was finalized in 2008.
  13. @chapter Container-specific codec tags
  14. @section Generic raw YUVA formats
  15. Since many exotic planar YUVA pixel formats are not considered by
  16. the AVI/QuickTime FourCC lists, the following scheme is adopted for
  17. representing them.
  18. The first two bytes can contain the values:
  19. Y1 = only Y
  20. Y2 = Y+A
  21. Y3 = YUV
  22. Y4 = YUVA
  23. The third byte represents the width and height chroma subsampling
  24. values for the UV planes, that is the amount to shift the luma
  25. width/height right to find the chroma width/height.
  26. The fourth byte is the number of bits used (8, 16, ...).
  27. If the order of bytes is inverted, that means that each component has
  28. to be read big-endian.
  29. @section Raw Audio
  30. @multitable @columnfractions .4 .4
  31. @item ALAW @tab A-LAW
  32. @item ULAW @tab MU-LAW
  33. @item P<type><interleaving><bits> @tab little-endian PCM
  34. @item <bits><interleaving><type>P @tab big-endian PCM
  35. @end multitable
  36. <type> is S for signed integer, U for unsigned integer, F for IEEE float
  37. <interleaving> is D for default, as a historical artefact.
  38. <bits> is 8/16/24/32
  39. @example
  40. PFD[32] would for example be signed 32 bit little-endian IEEE float
  41. @end example
  42. @section Subtitles
  43. @multitable @columnfractions .4 .4
  44. @item UTF8 @tab Raw UTF-8
  45. @item SSA[0] @tab SubStation Alpha
  46. @item DVDS @tab DVD subtitles
  47. @item DVBS @tab DVB subtitles
  48. @end multitable
  49. @section Codecs
  50. @multitable @columnfractions .4 .4
  51. @item 3IV1 @tab non-compliant MPEG-4 generated by old 3ivx
  52. @item ASV1 @tab Asus Video
  53. @item ASV2 @tab Asus Video 2
  54. @item CVID @tab Cinepak
  55. @item CYUV @tab Creative YUV
  56. @item DIVX @tab non-compliant MPEG-4 generated by old DivX
  57. @item DUCK @tab Truemotion 1
  58. @item FFV1 @tab FFmpeg video 1
  59. @item FFVH @tab FFmpeg Huffyuv
  60. @item H261 @tab ITU H.261
  61. @item H262 @tab ITU H.262
  62. @item H263 @tab ITU H.263
  63. @item H264 @tab ITU H.264
  64. @item HFYU @tab Huffyuv
  65. @item I263 @tab Intel H.263
  66. @item IV31 @tab Indeo 3.1
  67. @item IV32 @tab Indeo 3.2
  68. @item IV50 @tab Indeo 5.0
  69. @item LJPG @tab ITU JPEG (lossless)
  70. @item MJLS @tab ITU JPEG-LS
  71. @item MJPG @tab ITU JPEG
  72. @item MPG4 @tab MS MPEG-4v1 (not ISO MPEG-4)
  73. @item MP42 @tab MS MPEG-4v2
  74. @item MP43 @tab MS MPEG-4v3
  75. @item MP4V @tab ISO MPEG-4 Part 2 Video (from old encoders)
  76. @item mpg1 @tab ISO MPEG-1 Video
  77. @item mpg2 @tab ISO MPEG-2 Video
  78. @item MRLE @tab MS RLE
  79. @item MSVC @tab MS Video 1
  80. @item RT21 @tab Indeo 2.1
  81. @item RV10 @tab RealVideo 1.0
  82. @item RV20 @tab RealVideo 2.0
  83. @item RV30 @tab RealVideo 3.0
  84. @item RV40 @tab RealVideo 4.0
  85. @item SNOW @tab FFmpeg Snow
  86. @item SVQ1 @tab Sorenson Video 1
  87. @item SVQ3 @tab Sorenson Video 3
  88. @item theo @tab Xiph Theora
  89. @item TM20 @tab Truemotion 2.0
  90. @item UMP4 @tab non-compliant MPEG-4 generated by UB Video MPEG-4
  91. @item VCR1 @tab ATI VCR1
  92. @item VP30 @tab VP 3.0
  93. @item VP31 @tab VP 3.1
  94. @item VP50 @tab VP 5.0
  95. @item VP60 @tab VP 6.0
  96. @item VP61 @tab VP 6.1
  97. @item VP62 @tab VP 6.2
  98. @item VP70 @tab VP 7.0
  99. @item WMV1 @tab MS WMV7
  100. @item WMV2 @tab MS WMV8
  101. @item WMV3 @tab MS WMV9
  102. @item WV1F @tab non-compliant MPEG-4 generated by ?
  103. @item WVC1 @tab VC-1
  104. @item XVID @tab non-compliant MPEG-4 generated by old Xvid
  105. @item XVIX @tab non-compliant MPEG-4 generated by old Xvid with interlacing bug
  106. @end multitable