Esxi running macos For selur - Printable Version +- Selur's Little Message Board (https://forum.selur.net) +-- Forum: Talk, Talk, Talk (https://forum.selur.net/forum-5.html) +--- Forum: Small Talk (https://forum.selur.net/forum-7.html) +--- Thread: Esxi running macos For selur (/thread-1495.html) Pages:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
RE: Esxi running macos For selur - Adamcarter - 04.09.2020 Shijan, I Think i found what we need For the qtgmc problem. https://github.com/HomeOfVapourSynthEvolution/VapourSynth-TDeintMod it’s called TDeintmod and meatwad already compiled this ages ago. It’s on his server. 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? TDeintmod only sends combed Interlaced frames to Qtgmc, and leaves progressive ones alone. (original TDeint sends all which potentially causes jaggies) Thanks. RE: Esxi running macos For selur - shijan - 04.09.2020 Filtering -> Other -> VFM - popup error window "Got an empty value for 'vsOVFMMChroma', please report to Selur!" Also with default settings it gives me this error Failed to evaluate the script: RE: Esxi running macos For selur - shijan - 04.09.2020 Updated DotKill ERROR https://www.mediafire.com/folder/wvdlnjapm1vvw#gm3qrek88a7bp Failed to evaluate the script: AA -> Santiag EMPTY vsViever screen when i use Type: sangnom or Type: selectHV/sangnom/sangnom RE: Esxi running macos For selur - Selur - 04.09.2020 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?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/VapoursynthScriptsInHybrid/blob/master/havsfunc.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: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: clip = core.vivtc.VFM(clip=clip, order=0, blockx=4, blocky=4) Quote:Updated DotKill ERROR ... clip = core.dotkill.DotKill(clip=clip) -> Not a Hybrid bug. Quote:AA -> Santiag EMPTY vsViever screen when i use Type: sangnom or Type: selectHV/sangnom/sangnomLooking at the script https://github.com/Selur/VapoursynthScriptsInHybrid/blob/master/havsfunc.py in line 195 Santiag uses: c.sangnom.SangNom(order=field, aa=aa) Just tested on Windows and it seems like there's a bug in Santiag, since using SangNom gives: 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? Posted an issue about it over at: https://github.com/HomeOfVapourSynthEvolution/havsfunc/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. RE: Esxi running macos For selur - Adamcarter - 04.09.2020 Selur, I think i miss spoke In VIVTC i understood that TDeint is used as post-processor (something to get rid of the combed frames IVTC misses), You recently added qtgmc and needi3 to VIVTC as a deinterlacer of residual combed frames. Shijan has said that when using qtgmc and needi3 that there are jaggies on straight lines oriented diagonally. But not on the vivtc internal deinterlacer. This has been mentioned before and people have suggested that TDeint is the culprit for miss catagorizing progressive frames as combed. And hence TDeintmod was created. As it will only send combed frames. So what i gather you are saying is VIVTC does not call or use TDeint in any form or function. (i Also know qtgmc likewise doesn’t use TDeint) Because if VIVTC does use TDeint, i was asking if we could substitute TDeintMod instead. Hope that makes sense, f = 1 #field RE: Esxi running macos For selur - Selur - 04.09.2020 Atm. VIVTC does use it's inner deinterlacer by default and I added the options to use QTGMC or NNEDI3 for it. It doesn't use TDeint. (I could modify Hybrid to use TDeintMod additionally to NNEDI3 and QTGMC, but that might not solve your problem if that was caused by the usage of TDeint.) Cu Selur RE: Esxi running macos For selur - Adamcarter - 04.09.2020 (04.09.2020, 17:00)Selur Wrote: Atm. VIVTC does use it's inner deinterlacer by default and I added the options to use QTGMC or NNEDI3 for it.True if it never used tdeint to begin with, adding something may add more issues to it. Or by not having it, It’s like “on” by default, meaning by default all frames are being sent to qtgmc or needi3, and maybe having tdeintmod which has “IsCombed“ built in which is a utility function to check whether or not a frame is combed and stores the result (0 or 1) as a frame property named _Combed. It's intended to be used within std.FrameEval to process only combed frames and leave non-combed frames untouched. I honestly dont know if what I’m saying makes sense. And i wouldn’t even begin to know if it fixes what shijan mentioned happens (jaggies). It is a tough call, maybe an alternative test build with tdeintmod that shijan could play around with. If he thinks it’s pointless and you think it is pointless, then i am ok with not adding it. i’m literally scouring videohelp for similar situations either in vapoursynth or avisynth, and taking note of their solutions. And ask this forum if they think the solution would work with our setup. In the meantime i will look for other options. P.S. Meatwad is finished compiling anime4k https://www.mediafire.com/folder/wvdlnjapm1vvw#wvdlnjapm1vvw thank you for the info. RE: Esxi running macos For selur - shijan - 04.09.2020 Filtering -> Other -> VFM - fixed now (no more popup error window) Hope developers will edit Santiag to use SangNom instead of SangNomMod. DotKill is loading but gives error in Hybrid. Here is info from Terminal. /usr/local/bin/vspipe --info /Users/shph/Desktop/test.vpy - RE: Esxi running macos For selur - Selur - 04.09.2020 Python exception: Plugin /Library/Frameworks/VapourSynth.framework/lib/vapoursynth/dotkill64.dylib already loaded (com.vapoursynth.dotkill) from /Library/Frameworks/VapourSynth.framework/lib/vapoursynth/dotkill64.dylib core.std.LoadPlugin('/Library/Frameworks/VapourSynth.framework/lib/vapoursynth/dotkill64.dylib') I checked the script Hybrid generates here and that line isn't included there. -> must be your self-written script which tries to load a library that is already loaded RE: Esxi running macos For selur - shijan - 04.09.2020 Yes, it is just a test script. Plugin already in autoload folder and i load it with script again. If script reports that plugin already loaded - it means that loading works. |