有谁知道如何配置低延迟应用程序的AV1,我的意思是像HM (HEVC)那样的低延迟配置,其中GOP是IPPP.(只是两个时态层),
我尝试了这些,但我不确定,因为它与常规模式(随机访问)没有什么不同:
aomenc.exe --profile=0 --auto-alt-ref=0 --lag-in-frames=0 --arnr-maxframes=0 --arnr-strength=5 --static-thresh=0 --passes=2 --pass=1 --end-usage=cq --cq-level=40 --width=352 --height=288 --fpf=aom_QP40.log --cpu-used=4 --threads=8 --limit=10 --fps=25/1 --bit-depth=8 --kf-min-dist=32 --kf-max-dist=32 --psnr -o output_QP40.webm akiyo_cif.yuv
aomenc.exe --profile=0 --auto-alt-ref=0 --lag-in-frames=0 --arnr-maxframes=0 --arnr-strength=5 --static-thresh=0 --passes=2 --pass=2 --end-usage=cq --cq-level=40 --width=352 --height=288 --fpf=aom_QP40.log --cpu-used=4 --threads=8 --limit=10 --fps=25/1 --bit-depth=8 --kf-min-dist=32 --kf-max-dist=32 --psnr -o output_QP40.webm akiyo_cif.yuv 我使用--kf-min-dist=32 --kf-max-dist=32是因为为了流的目的,我希望每1秒复制一次黄金帧(IDR/I帧)。
发布于 2020-01-10 01:24:34
这是答案。在x265中,我们有零延迟模式,其中只有IPPP帧,而在VP9中,您必须对libvpx * --arnr-maxframes=0 -arnr-强度=0-arnr-type=3-auto ref=0*使用下面的命令,我在Bitstream分析器上附加了屏幕截图,您可以看到ALTREF=0。
https://stackoverflow.com/questions/50602736
复制相似问题