Thread: VirtualDub2
View Single Post
Old 22nd October 2018, 06:50   #711  |  Link
poisondeathray
Registered User
 
Join Date: Sep 2007
Posts: 5,346
Actually you can do it with avs+ using dither tools, if you use the stacked format

I think Firesledge (aka Cretindesalpes) retired from avisynth stuff before avs+ became more stable (where you can use native formats now), so you can use the hacked 8bit MSB/LSB stack format (which was used for higher bit depth formats when he was active) ; I don't think dither tools was updated for the native pixel formats

Code:
LsmashVideoSource("checkers-444.mov", format="YUV444P10", stacked=true)
Dither_resize16(1920,1080, kernel="box", csp="YV16")
ConvertFromStacked(bits=10)
There are some slight histogram differences, but it's quite close. Might be some minor dithering or rounding differences

Last edited by poisondeathray; 22nd October 2018 at 06:56.
poisondeathray is offline   Reply With Quote