什么决定了视频的质量

什么决定了视频的质量

我有一个视频文件(其中也包含音频流)。我想根据比特率、位深度、高度、宽度、编码等确定其质量。其中什么决定了视频的质量?

例如我有这个mediainfo视频的转储

ID                                       : 1
Format                                   : AVC
Format/Info                              : Advanced Video Codec
Format profile                           : [email protected]
Format settings, CABAC                   : Yes
Format settings, ReFrames                : 4 frames
Codec ID                                 : V_MPEG4/ISO/AVC
Duration                                 : 3h 2mn
Nominal bit rate                         : 1 048 Kbps
Width                                    : 1 280 pixels
Height                                   : 720 pixels
Display aspect ratio                     : 16:9
Frame rate                               : 24.000 fps
Color space                              : YUV
Chroma subsampling                       : 4:2:0
Bit depth                                : 8 bits
Scan type                                : Progressive
Bits/(Pixel*Frame)                       : 0.047
Writing library                          : x264 core 125 r2200 999b753
Encoding settings                        : cabac=1 / ref=3 / deblock=1:-1:-1 / analyse=0x3:0x113 / me=umh / subme=9 / psy=1 / psy_rd=0.00:0.00 / mixed_ref=1 / me_range=32 / chroma_me=1 / trellis=2 / 8x8dct=1 / cqm=0 / deadzone=21,11 / fast_pskip=0 / chroma_qp_offset=0 / threads=48 / lookahead_threads=8 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / bluray_compat=0 / constrained_intra=0 / bframes=3 / b_pyramid=2 / b_adapt=2 / b_bias=0 / direct=3 / weightb=1 / open_gop=0 / weightp=2 / keyint=250 / keyint_min=25 / scenecut=40 / intra_refresh=0 / rc_lookahead=60 / rc=2pass / mbtree=1 / bitrate=1048 / ratetol=1.0 / qcomp=0.60 / qpmin=10 / qpmax=51 / qpstep=4 / cplxblur=20.0 / qblur=0.5 / ip_ratio=1.40 / aq=1:1.00
Default                                  : Yes
Forced                                   : No

另一个视频

ID                                       : 1
Format                                   : AVC
Format/Info                              : Advanced Video Codec
Format profile                           : [email protected]
Format settings, CABAC                   : Yes
Format settings, ReFrames                : 4 frames
Codec ID                                 : V_MPEG4/ISO/AVC
Duration                                 : 1h 30mn
Nominal bit rate                         : 817 Kbps
Width                                    : 1 280 pixels
Height                                   : 544 pixels
Display aspect ratio                     : 2.35:1
Frame rate                               : 23.976 fps
Color space                              : YUV
Chroma subsampling                       : 4:2:0
Bit depth                                : 8 bits
Scan type                                : Progressive
Bits/(Pixel*Frame)                       : 0.049
Writing library                          : x264 core 120 r2146 bcd41db
Encoding settings                        : cabac=1 / ref=3 / deblock=1:-1:-1 / analyse=0x3:0x113 / me=umh / subme=9 / psy=1 / psy_rd=0.00:0.00 / mixed_ref=1 / me_range=32 / chroma_me=1 / trellis=2 / 8x8dct=1 / cqm=0 / deadzone=21,11 / fast_pskip=0 / chroma_qp_offset=-2 / threads=12 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / bluray_compat=0 / constrained_intra=0 / bframes=3 / b_pyramid=2 / b_adapt=2 / b_bias=0 / direct=3 / weightb=1 / open_gop=0 / weightp=2 / keyint=240 / keyint_min=23 / scenecut=40 / intra_refresh=0 / rc_lookahead=60 / rc=2pass / mbtree=1 / bitrate=817 / ratetol=1.0 / qcomp=0.60 / qpmin=10 / qpmax=51 / qpstep=4 / cplxblur=20.0 / qblur=0.5 / ip_ratio=1.40 / aq=1:1.00
Default                                  : Yes
Forced                                   : No

您怎么知道哪个视频更好?

答案1

无论高度/宽度/帧速率/深度如何,能让您很好地了解视频质量的一个因素是位/像素*帧或者bpf。这是一个综合测量,包括编解码器设置、帧大小和帧速率。即

Bits/(Pixel*Frame)                       : 0.047

例如,在未压缩的 24 位 RGB 视频中,bpf 应为 24.0 位,因为没有压缩。在您的第一个示例中,压缩/编码使 bpf 低得多,仅为 0.047。

  • 一般来说,假设你的编解码器是 AVC 或 MPEG-4 ASP (Xvid/Divx),bpf 为 0.1 或更高好的,0.2 或以上非常好并且 0.3 或以上出色的。这适用于大多数现实生活中的移动视频,但对于纯动画来说则不然。当然,如果你的“电影”只是每 10 秒放映一张图片的幻灯片,那么这个假设就完全不成立了。

  • 此外,假设具有类似的编解码器和 bpf,那么如果您的输出屏幕/电视可以支持该分辨率/帧速率,则具有更好的高度/宽度/帧速率的视频自然会“更好”。

答案2

压缩音频或视频文件的主观“质量”是多种因素的结果,没有简单的公式。有些压缩方案更适合动画,而另一些则更适合高度复杂的视频片段。例如,您是喜欢高分辨率的高度压缩视频还是低压缩和低分辨率的视频,这取决于个人喜好,而且非常主观。

相关内容