This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Grey Scale
#1
Hi there,

how can I achieve GreyScale in Hybrid?
Reply
#2
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
Reply
#3
Thank you!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)