30.07.2019, 04:01
30.07.2019, 04:59
Aside from using Avisnth/Vapoursynth->Custom you can't (never had any use for it which is why Hybrid has no button for it).
That said, you can:
That said, you can:
- set Filtering->Avisynth->Custom to DeDotCrawl
- enable it
- insert:
inside the custom fieldCode:Greyscale()
- which will add a custom script part to your Avisynth script like:
and your output will be gray scale, note that the output will not change the color space.Code:# CUSTOM SCRIPT PART - position: DeDotCrawl - START
function CustomDeDotCrawl(clip clp) {
last=clp
Greyscale()
}
# CUSTOM SCRIPT PART - position: DeDotCrawl - END
CustomDeDotCrawl() # loading custom script content
In case your video isn't yuv but rgb the script needs to be adjusted accordingly.
(similar goes for Vapoursynth with 'clip = core.std.ShufflePlanes(clips=clip, planes=0, colorfamily=vs.GRAY)')
Cu Selur
02.08.2019, 02:12
Thank you!