vui.txt
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:9k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. Video Usability Information (VUI) Guide
  2. by Christian Heine ( sennindemokrit at gmx dot net )
  3. 1. Sample Aspect Ratio
  4. -----------------------
  5. * What is it?
  6.     The Sample Aspect Ratio (SAR) (sometimes called Pixel Aspect Ratio or just
  7.     Pel Aspect Ratio) is defined as the ratio of the width of the sample to the
  8.     height of the sample. While pixels on a computer monitor generally are
  9.     "square" meaning that their SAR is 1:1, digitized video usually has rather
  10.     odd SARs. Playback of material with a particular SAR on a system with
  11.     a different SAR will result in a stretched/squashed image. A correction is
  12.     necessary that relies on the knowledge of both SARs.
  13. * How do I use it?
  14.     You can derive the SAR of an image from the width, height and the
  15.     display aspect ratio (DAR) of the image as follows:
  16.     
  17.     SAR_x   DAR_x * height
  18.     ----- = --------------
  19.     SAR_y   DAR_y * width
  20.     
  21.     for example:
  22.     width x height = 704x576, DAR = 4:3 ==> SAR = 2304:2112 or 12:11
  23.     
  24.     Please note that if your material is a digitized analog signal, you should
  25.     not use this equation to calculate the SAR. Refer to the manual of your
  26.     digitizing equipment or this link instead.
  27.     A Quick Guide to Digital Video Resolution and Aspect Ratio Conversions
  28.     http://www.iki.fi/znark/video/conversion/
  29. * Should I use this option?
  30.     In one word: yes. Most decoders/ media players nowadays support automatic
  31.     correction of aspect ratios, and there are just few exceptions. You should
  32.     even use it, if the SAR of your material is 1:1, as the default of x264 is
  33.     "SAR not defined".
  34.     
  35. 2. Overscan
  36. ------------
  37. * What is it?
  38.     The term overscan generally refers to all regions of an image that do
  39.     not contain information but are added to achieve a certain resolution or
  40.     aspect ratio. A "letterboxed" image therefore has overscan at the top and
  41.     the bottom. This is not the overscan this option refers to. Neither refers
  42.     it to the overscan that is added as part of the process of digitizing an
  43.     analog signal. Instead it refers to the "overscan" process on a display
  44.     that shows only a part of the image. What that part is depends on the
  45.     display.
  46.     
  47. * How do I use this option?
  48.     As I'm not sure about what part of the image is shown when the display uses
  49.     an overscan process, I can't provide you with rules or examples. The safe
  50.     assumption would be "overscan=show" as this always shows the whole image.
  51.     Use "overscan=crop" only if you are sure about the consequences. You may
  52.     also use the default value ("undefined").
  53. * Should I use this option?
  54.     Only if you know exactly what you are doing. Don't use it on video streams
  55.     that have general overscan. Instead try to to crop the borders before
  56.     encoding and benefit from the higher bitrate/ image quality.
  57.     Furthermore the H264 specification says that the setting "overscan=show"
  58.     must be respected, but "overscan=crop" may be ignored. In fact most
  59.     playback equipment ignores this setting and shows the whole image.
  60. 3. Video Format
  61. ----------------
  62. * What is it?
  63.     A purely informative setting, that explains what the type of your analog
  64.     video was, before you digitized it.
  65.     
  66. * How do I use this option?
  67.     Just set it to the desired value. ( e.g. NTSC, PAL )
  68.     If you transcode from MPEG2, you may find the value for this option in the
  69.     m2v bitstream. (see ITU-T Rec. H262 / ISO/IEC 13818-2 for details)
  70. * Should I use this option?
  71.     That is entirely up to you. I have no idea how this information would ever
  72.     be relevant. I consider it to be informative only.
  73. 4. Full Range
  74. --------------
  75. * What is it?
  76.     Another relic from digitizing analog video. When digitizing analog video
  77.     the digital representation of the luma and chroma levels is limited to lie
  78.     within 16..235 and 16..240 respectively. Playback equipment usually assumes
  79.     all digitized samples to be within this range. However most DVDs use the
  80.     full range of 0..255 for luma and chroma samples, possibly resulting in an
  81.     oversaturation when played back on that equipment. To avoid this a range
  82.     correction is needed.
  83. * How do I use this option?
  84.     If your source material is a digitized analog video/TV broadcast it is
  85.     quite possible that it is range limited. If you can make sure that it is
  86.     range limited you can safely set full range to off. If you are not sure
  87.     or want to make sure that your material is played back without
  88.     oversaturation, set if to on. Please note that the default for this option
  89.     in x264 is off, which is not a safe assumption.
  90.     
  91. * Should I use this option?
  92.     Yes, but there are few decoders/ media players that distinguish
  93.     between the two options.
  94.     
  95. 5. Color Primaries, Transfer Characteristics, Matrix Coefficients
  96. -------------------------------------------------------------------
  97. * What is it?
  98.     A videophile setting. The average users won't ever need it.
  99.     Not all monitor models show all colors the same way. When comparing the
  100.     same image on two different monitor models you might find that one of them
  101.     "looks more blue", while the other "looks more green". Bottom line is, each
  102.     monitor model has a different color profile, which can be used to correct
  103.     colors in a way, that images look almost the same on all monitors. The same
  104.     goes for printers and film/ video digitizing equipment. If the color
  105.     profile of the digitizing equipment is known, it is possible to correct the
  106.     colors and gamma of the decoded h264 stream in a way that the video stream
  107.     looks the same, regardless of the digitizing equipment used.
  108.     
  109. * How do I use these options?
  110.     If you are able to find out which characteristics your digitizing equipment
  111.     uses, (see the equipment documentation or make reference measurements)
  112.     then find the most suitable characteristics in the list of available
  113.     characteristics (see H264 Annex E) and pass it to x264. Otherwise leave it
  114.     to the default (unspecified).
  115.     If you transcode from MPEG2, you may find the values for these options in
  116.     the m2v bitstream. (see ITU-T Rec. H262 / ISO/IEC 13818-2 for details)
  117. * Should I use these options?
  118.     Only if you know exactly what you are doing. The default setting is better
  119.     than a wrong one. Use of this option is not a bad idea though.
  120.     Unfortunately I don't know any decoder/ media player that ever even
  121.     attempted color/gamma/color matrix correction.
  122. 6. Chroma Sample Location
  123. --------------------------
  124. * What is it?
  125.     A videophile setting. The average user won't ever notice a difference.
  126.     Due to a weakness of the eye, it is often economic to reduce the number of
  127.     chroma samples in a process called subsampling. In particular x264 uses
  128.     only one chroma sample of each chroma channel every block of 2x2 luma
  129.     samples. There are a number of possibilities on how this subsampling is
  130.     done, each resulting in another relative location of the chroma sample
  131.     towards the luma samples. The Chroma Sample Location matters when the
  132.     subsampling process is reversed, e.g. the number of chroma samples is
  133.     increased. This is most likely to happen at color space conversions. If it
  134.     is not done correctly the chroma values may appear shifted compared to the
  135.     luma samples by at most 1 pixel, or strangely blurred.
  136. * How do I use this option?
  137.     Because x264 does no subsampling, since it only accepts already subsampled
  138.     input frames, you have to determine the method yourself.
  139.     If you transcode from MPEG1 with proper subsampled 4:2:0, and don't do any
  140.     color space conversion, you should set this option to 1.
  141.     If you transcode from MPEG2 with proper subsampled 4:2:0, and don't do any
  142.     color space conversion, you should set this option to 0.
  143.     If you transcode from MPEG4 with proper subsampled 4:2:0, and don't do any
  144.     color space conversion, you should set this option to 0.
  145.     If you do the color space conversion yourself this isn't that easy. If the
  146.     filter kernel of the subsampling is ( 0.5, 0.5 ) in one direction then the
  147.     chroma sample location in that direction is between the two luma samples.
  148.     If your filter kernel is ( 0.25, 0.5, 0.25 ) in one direction then the
  149.     chroma sample location in that direction is equal to one of the luma
  150.     samples. H264 Annex E contains images that tell you how to "transform" your
  151.     Chroma Sample Location into a value of 0 to 5 that you can pass to x264.
  152.     
  153. * Should I use this option?
  154.     Unless you are a perfectionist, don't bother. Media players ignore this
  155.     setting, and favor their own (fixed) assumed Chroma Sample Location.