Quote: What exactly wrong with ProRes?
It's not lossless and as such not a good choice as intermediate format.
Quote:By the way how about add CineForm codec to Hybrid export options?
https://github.com/gopro/cineform-sdk
a. I don't have a solution for all currently used tools in Hybrid
b. like you notice yourself, there are still tons of problems to get all the Vapoursynth stuff working
-> adding new stuff would just be stupid
Quote:Selur, is there a way when using Reverse telecine VIVTC with qtgmc and needi3 as the deinterlacer it can Use the TDeintMod, instead of TDeint?
What makes you think QTGMC uses TDeint?
When looking at
https://github.com/Selur/VapoursynthScri...avsfunc.py I see no call of tdeint or tdeintmod in QTGMC.
-> I think you misunderstood something.
Quote:Filtering -> Other -> VFM - popup error window "Got an empty value for 'vsOVFMMChroma', please report to Selur!"
Like I wrote before I need details to reproduce this.
Quote:Also with default settings it gives me this error:
Code:
...
Invalid mi threshold specified
...
the defaults would used:
[ode]
clip = core.vivtc.VFM(clip=clip, order=0, mode=1)
clip = core.vivtc.VDecimate(clip=clip)# new fps: 23.976
[/code]
you used:
Code:
clip = core.vivtc.VFM(clip=clip, order=0, blockx=4, blocky=4)
-> I adjusted the code to limit mi to blockx*blocky
Quote:Updated DotKill ERROR ...
Code:
clip = core.dotkill.DotKill(clip=clip)
is the proper syntax, seems like either the library is broken or something hinders Vapoursynth from loading the library.
-> Not a Hybrid bug.
Quote:AA -> Santiag EMPTY vsViever screen when i use Type: sangnom or Type: selectHV/sangnom/sangnom
Looking at the script
https://github.com/Selur/VapoursynthScri...avsfunc.py in line 195 Santiag uses:
Code:
c.sangnom.SangNom(order=field, aa=aa)
which is a correct call using SangNom (
https://github.com/dubhater/vapoursynth-sangnom) so assuming you have libsangnom.dylib it should work.
Just tested on Windows and it seems like there's a bug in Santiag, since using SangNom gives:
Code:
SangNom: the _FieldBased frame property must be either 1 (bottom field first) or 2 (top field first) when order is 0 (double rate output). Did you forget to invoke DoubleWeave before SangNom?
-> it's a bug in the Santiag script, it should be using 'SangNomMod' instead of Sangnom or be adjusted.
Posted an issue about it over at:
https://github.com/HomeOfVapourSynthEvol.../issues/35
will adjust havsfunc for Hybrid to use sangnommod and remove the sangnom option for MacOS.
Cu Selur
ps.: uploaded a new version which removes sangnom form Santiag and fixed the mi restriction.