Selur's Little Message Board

Full Version: About Vapoursynth custom sections
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
If you add a custom section through "Filtering->Vapoursynth->Custom", be aware that you are responsible for
  • importing everything that your script needs.
  • taking care of any color conversion, etc. .
  • letting Hybrid know if your custom section changed the clips characteristics (width, height, scantype, colorformat, framerate).
Hybrid does not support changing the frame count in custom sections.

To let Hybrid know you changed one of the characteristics add:
Code:
# characteristicName characteristicValue
for example:
Code:
# width 400
# height 400
# scantype tff
# colorformat YUV448
# framerate 120

Cu Selur