Selur's Little Message Board
Grey Scale - 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: Grey Scale (/thread-1097.html)



Grey Scale - hanspeter007 - 30.07.2019

Hi there,

how can I achieve GreyScale in Hybrid?


RE: Grey Scale - Selur - 30.07.2019

Aside from using Avisnth/Vapoursynth->Custom you can't (never had any use for it which is why Hybrid has no button for it). Wink
That said, you can:
  • set Filtering->Avisynth->Custom to DeDotCrawl
  • enable it
  • insert:
    Greyscale()
    inside the custom field
  • which will add a custom script part to your Avisynth script like:
    # CUSTOM SCRIPT PART - position: DeDotCrawl - START
    function CustomDeDotCrawl(clip clp) {
      last=clp
      Greyscale()
    }
    # CUSTOM SCRIPT PART - position: DeDotCrawl - END

    CustomDeDotCrawl() # loading custom script content
    and your output will be gray scale, note that the output will not change the color space.
    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



RE: Grey Scale - hanspeter007 - 02.08.2019

Thank you!