I just grabbed the latest version so am on 2.6.0.
Describe the bug
Setting padding value(s) does not add all 4 (l,t,r,b) values for --vpp-pad. Setting top and bottom only causes error: Error: Invalid value "60,60" for "--vpp-pad"
Expected behavior
Switch values for setting top and bottom padding of 60. Switch expected to render as:
--vpp-pad=0,60,0,60
How to reproduce the issue
Provide information
Current NVEncC64.exe with 2.6.0:
NVEncC (x64) 5.32 (r1925) by rigaya, May 18 2021 14:30:14 (VC 1928/Win/avx2)
Reference for switch:
--vpp-pad <int>,<int>,<int>,<int>
add padding to left,top,right,bottom (in pixels)
Confirmed.
Just FYI, instead of using the embedded filter of _NVEnc_, you can try the AddBorders AviSynth filter.
AddBorders(0, 60, 0, 60)
This adds black color of 60 pixels at top and bottom.
There's one more advantage with AviSynth filter: you can see what the result will be like in _Preview_. By contrast, you can't with NVEnc vpp filters.
Is fixed and will be included in the next release.
@AYColumbia
Thanks for the report, which was additionally very detailed.
Glad to help. Thank you.