720p至微型720p


0

什么是Micro-720p翻录方法?我想使用ffmpeg和libx264从720p撕开。

m720p视频信息示例(我不知道源视频):

General
Complete name                            : D:\m720p.mp4
Format                                   : MPEG-4
Format profile                           : Base Media
Codec ID                                 : isom
File size                                : 596 MiB
Duration                                 : 1h 16mn
Overall bit rate mode                    : Variable
Overall bit rate                         : 1 096 Kbps
Encoded date                             : UTC 2013-02-05 23:44:15
Tagged date                              : UTC 2013-02-05 23:44:15

Video
ID                                       : 1
Format                                   : AVC
Format/Info                              : Advanced Video Codec
Format profile                           : High@L4.0
Format settings, CABAC                   : Yes
Format settings, ReFrames                : 9 frames
Codec ID                                 : avc1
Codec ID/Info                            : Advanced Video Coding
Duration                                 : 1h 16mn
Bit rate                                 : 1 003 Kbps
Maximum bit rate                         : 3 982 Kbps
Width                                    : 1 280 pixels
Height                                   : 688 pixels
Display aspect ratio                     : 1.85:1
Frame rate mode                          : Constant
Frame rate                               : 23.976 fps
Color space                              : YUV
Chroma subsampling                       : 4:2:0
Bit depth                                : 8 bits
Scan type                                : Progressive
Bits/(Pixel*Frame)                       : 0.048
Stream size                              : 542 MiB (91%)
Writing library                          : x264 core 129 r2230 1cffe9f
Encoding settings                        : cabac=1 / ref=9 / deblock=1:0:0 / analyse=0x3:0x113 / me=hex / subme=7 / psy=1 / psy_rd=1.00:0.00 / mixed_ref=1 / me_range=16 / chroma_me=1 / trellis=1 / 8x8dct=1 / cqm=0 / deadzone=21,11 / fast_pskip=1 / chroma_qp_offset=-2 / threads=6 / lookahead_threads=1 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / bluray_compat=0 / constrained_intra=0 / bframes=8 / b_pyramid=2 / b_adapt=1 / b_bias=0 / direct=1 / weightb=1 / open_gop=0 / weightp=2 / keyint=240 / keyint_min=23 / scenecut=40 / intra_refresh=0 / rc_lookahead=40 / rc=2pass / mbtree=1 / bitrate=1003 / 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
Encoded date                             : UTC 2013-02-05 23:44:15
Tagged date                              : UTC 2013-02-05 23:44:24

Audio
ID                                       : 2
Format                                   : AAC
Format/Info                              : Advanced Audio Codec
Format profile                           : LC
Codec ID                                 : 40
Duration                                 : 1h 16mn
Bit rate mode                            : Variable
Bit rate                                 : 96.0 Kbps
Maximum bit rate                         : 130 Kbps
Channel(s)                               : 2 channels
Channel positions                        : Front: L R
Sampling rate                            : 48.0 KHz
Compression mode                         : Lossy
Stream size                              : 52.2 MiB (9%)
Language                                 : English
Encoded date                             : UTC 2013-02-05 23:44:22
Tagged date                              : UTC 2013-02-05 23:44:24

Micro HD:720p或1080p,可降低视频质量损失的比特率。优于DVDRip和BRRip的质量。m720p的尺寸越来越小,并且无损质量。例如:大小1280x680,比特率1096,文件大小:596 MiB.Exm视频屏幕i.imgur.com/waRKWOS.jpg。我从互联网上找到的示例视频。抱歉,我的英语不太懂:)
Ahmet KAPIKIRAN

我有信心,将4 MBit / s的蓝光rip压缩到低于1 MBit / s的720p rip,可以提供更好的质量。它不会“无损”,甚至在视觉上也不会“无损”。但是我现在知道“ m-720p”是指什么。感谢您的解释。
slhck

Answers:


0

Slhck对Micro-720p是盗版电影团队的发行类型是正确的。

AFAIK,那些团队正在使用一些x264编码设置调整来存档具有可接受质量的低比特率。您可以从此行获得他们使用的内容

Encoding settings                        : cabac=1 / ref=9 / deblock=1:0:0 / analyse=0x3:0x113 / me=hex / subme=7 / psy=1 / psy_rd=1.00:0.00 / mixed_ref=1 / me_range=16 / chroma_me=1 / trellis=1 / 8x8dct=1 / cqm=0 / deadzone=21,11 / fast_pskip=1 / chroma_qp_offset=-2 / threads=6 / lookahead_threads=1 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / bluray_compat=0 / constrained_intra=0 / bframes=8 / b_pyramid=2 / b_adapt=1 / b_bias=0 / direct=1 / weightb=1 / open_gop=0 / weightp=2 / keyint=240 / keyint_min=23 / scenecut=40 / intra_refresh=0 / rc_lookahead=40 / rc=2pass / mbtree=1 / bitrate=1003 / 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

低比特率的最重要设置是:ref = 9 subme = 7 bframes = 8

并可以通过调谐胶片|动画来更改去块

顺便说一句,如果要使用ffmpeg将音频转码为aac,则应使用lib_fdkaac,这比libfaac更好。只需尝试使用lib_fdcaac使新的ffmpeg兼容。

你可以尝试一些极端的设置

ffmpeg -i 720p.mkv \
-c:v libx264 -crf 22 -preset slower -x264opts subme=11:ref=16:bframes=16 -tune film \
-c:a libfdk_aac -ac 2 -flags +qscale -global_quality 2 -afterburner 1 \
m720p.mp4

我知道效果不错,但是视频比特率大约为1400〜1600 Kbps。


那不是一个很好的答案。一个好的答案应该解释如何解决问题。您提供给我们的信息很难做到这一点。
用户99572在

1

我想我最终发现了该术语的来源-这是盗版电影发行类型。它描述了720p电影(因此,将其调整为1280×720像素),但是比特率低于通常所需的比特率。

这里真的没有火箭科学。根据这些准则计算,720p蓝光rip的通常比特率约为4.5 MBit / s。我发现一个场景指南还使用4 MBit / s进行x264编码。因此,为了获得“微型”或“微型” 720p rip,您需要指定较低的比特率。

可以执行以下操作:

ffmpeg -i in.mp4 -c:v libx264 -b:v 1M -c:a libfaac -q:a 100 out.mp4

不幸的是,就质量而言,x264中的默认恒定比特率编码模式被认为是非常糟糕的。理想情况下,如果有时间,应该进行两次通过编码。这是一个1 MBit / s的示例:

ffmpeg -y -i in.mp4 -c:v libx264 -preset slow -b:v 1M -pass 1 -an -f mp4 /dev/null
ffmpeg -i in.mp4 -c:v libx264 -preset slow -b:v 1M -pass 2 -c:a libfaac -q:a 100 out.mp4

您可以预设从改变slowultraslow,或在其他方向mediumfastultrafast。选择较慢的预设可为您提供更好的压缩效果,但需要等待更长的时间。更好的压缩意味着在相同的文件大小下视频看起来更好。

请注意,如果您的原始文件已包含有效的MP4音频流(通常是AAC或MP3音频),则可以跳过该-c:a libfaac -q:a 100部分,而只需使用复制比特流-c:a copy


谢谢你的评论。我用第二个代码解决了问题。
Ahmet KAPIKIRAN 2013年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.