Problem is:
a. 707x471 Hybrid should have thrown an error on preview creation. Uneven
width and/or height is only allowed with 444 as output color sampling.
b. the preview call
Preview fails since original is still YUV420P8
is missing a conversion to YUV44P8 for the original
-> I'll look into it.
Note that, even after I fix the bugs, you either need to adjust your cropping values or your output color space.
Cu Selur
a. 707x471 Hybrid should have thrown an error on preview creation. Uneven
width and/or height is only allowed with 444 as output color sampling.
b. the preview call
# converting to mod1 compatible format
clip = core.resize.Bicubic(clip=clip, format=vs.YUV444P8, range_s="limited")
# cropping the video to 707x471
clip = core.std.CropRel(clip=clip, left=1, right=12, top=8, bottom=1)
# cropping the video to 707x471
original = core.std.CropRel(clip=original, left=1, right=12, top=8, bottom=1)
is missing a conversion to YUV44P8 for the original
-> I'll look into it.
Note that, even after I fix the bugs, you either need to adjust your cropping values or your output color space.
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.