The following warnings occurred: | |||||||||||||||
Warning [2] Undefined property: MyLanguage::$archive_pages - Line: 2 - File: printthread.php(287) : eval()'d code PHP 8.3.12-nmm1 (Linux)
|
Multilevel L0/L1 references now not working - Printable Version +- Selur's Little Message Board (https://forum.selur.net) +-- Forum: Hybrid - Support (https://forum.selur.net/forum-1.html) +--- Forum: Problems & Questions (https://forum.selur.net/forum-3.html) +--- Thread: Multilevel L0/L1 references now not working (/thread-3426.html) Pages:
1
2
|
RE: Multilevel L0/L1 references now not working - Selur - 06.10.2023 Haven't changed anything about container handling for years,.... MultiPass: https://github.com/rigaya/NVEnc/blob/master/NVEncC_Options.en.md#--multipass-string works fine here. and multipass is only allowed with vbr&cbr (https://github.com/rigaya/NVEnc/blob/master/NVEncC_Options.en.md#encode-mode-options) => seems to be fine, can't see a problem Cu Selur Ps.: if you switch between versions make sure to uninstall the previous Hybrid version and delete the settings. RE: Multilevel L0/L1 references now not working - RedDwarf - 08.10.2023 I did notice the tooltip on the Encoding mode, where it mentions the Constant/Variable (HQ), it mentions it being the same as Constant/Variable with 2 pass full. The C/V (HQ) options have been removed from the drop down box next to it. I did uninstall the older version and I did rename all the settings to .bak so that they would not affect anything. I deleted any remaining files in the Hybrid install location and I only kept the styles because I dislike white windows. The command line shows: NVEnc --avhw -i -INPUT- --fps 60.000 --codec h265 --profile main --level auto --tier high --sar 1:1 --lookahead 20 --output-depth 8 --multipass "2pass-full" --vbr 1500 --max-bitrate 800000 --gop-len 600 --ref 7 --multiref-l0 7 --multiref-l1 7 --nonrefp --weightp --bframes 5 --bref-mode each --mv-precision Q-pel --preset quality --colorrange limited --colormatrix bt709 --vpp-resize spline64 --output-res 1280x720 --vpp-gauss disabled --trim 0:13063 --cuda-schedule sync --output "J:\Temp\Hybrid\Temp\How to use Joysticks with AntiMicro Setup Tutorial.8.265" 01_audio WAITING extracting audio as aac using ffmpeg I would expect a 2nd pass to get much closer to the specified bitrate but it never does the 2nd pass. Does this output look how it is supposed to work or should there be two passes shown in the job list? RE: Multilevel L0/L1 references now not working - Selur - 08.10.2023 Okay, you got the wrong idea about 2pass encoding in regard to NVEnc. a. NVEnc does no 2pass like x264&co which optimized to hit a specific bit rate. (running 1 pass to analyse, running a second pass to hit a specific bitrate) b. what multi pass for hardware encoders do is they recompress the source image once and then another time while trying to optimize the compression. Quote:In 2-pass rate control modes, NVENC estimates the complexity of the frame to be encoded and determines bit distribution across the frame in the first pass. In the second pass, NVENC encodes macroblocks in the frame using the distribution determined in the first pass. 2-pass rate control modes can distribute the bits more optimally within the frame and can reach closer to the target bitrate, especially for CBR encoding.source: https://github.com/rigaya/NVEnc/blob/master/NVEncC_Options.en.md#--multipass-string but .. this is a 1pass process, the encoder is not reading the source multiple times. It is something completely different than 2-pass encoding with x264&co. To lessen the confusion about this, I separated this into two options. (forgot to adjust the 'encoding mode' tool-tip) Cu Selur |