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 - shijan - 10.10.2020 Deinterlace->VIVTVC (Vapoursynth) -> VFM -> TDeintMod ERROR: Failed to evaluate the script: Deinterlace->VIVTVC (Vapoursynth) -> Misc -> TDeintMod ERROR: Failed to evaluate the script: --------------- mClean Error Python exception: There is no function named Median --------------------- Some strange conflict with Waifu2xNvk/Waifu2x and TimeCube: Waifu2xNvk outputs RGB24 if i add TimeCube after it: # adjusting color space from YUV422P10 to RGBS for vsw2xnvk If i turn off TimeCube, script use RGBS output as expected. # adjusting color space from YUV422P10 to RGBS for vsw2xnvk --------------------- LEVELS and Limiter: Current settings in Levels is total confusion. Force RGB with "Planes: 0 and 1,2" makes no sense, because it adjusts R and G,B channels. "do nothing" makes no sense, because all channels YUV is just incorrect mode for this filter and it only produce green/purple artifacts. It should be just always RGB or selection between two modes: - RGB input and Planes: all - YUV input and Planes: luma only Here Cary Knoop reported that "You mess up your colors by modifying Y'. If you want to do what I suspect you want to do you should use something like L*a*b* but Vapoursynth does not support this color model." https://forum.doom9.org/showthread.php?p=1923885#post1923885 To be honest i can't understand his point. L*a*b* is different color model and Davinci resolve can use it optionally, but Y gamma is not the same as L gamma in L*a*b* in davinci resolve. There is YRGB color correction concept used in DaVinci Resolve and some other color grading apps: Levels in/out min/max also works correctly only with RGB input and Planes: all. I tested 10 bit source video (clip=clip, min_in=64, max_in=940, min_out=64, max_out=940, gamma=0.20) and it is equal to Gamma -1.00 in DaVinci Resolve. VapourSynth Levels filter works similar to any Levels color correction tool in any graphic editor. Here is how Levels filter looks in Photoshop: clip = core.resize.Bicubic(clip=clip, format=vs.RGB30, matrix_in_s="470bg", range_s="limited") clip = core.resize.Bicubic(clip=clip, format=vs.YUV422P10, matrix_in_s="470bg", range_s="limited") --------------------- Limiter filter also produce same green/purple artifacts as Levels in YUV mode. So it should be operated in the same way as Levels: - RGB input and Planes: all - YUV input and Planes: luma only --------------------- Sort TimeCube LUTs list by name --------------------- Please bring back disableicons in misc.ini RE: Esxi running macos For selur - Selur - 10.10.2020 Quote:Please bring back disableicons in misc.iniNot happening, because like you yourself made perfectly clear it breaks the general appearance. (+ I learned from it and will keep silent about other hidden options for the time being.) Quote:LEVELS and LimiterNo clue what you think would be a better solution. All those would have been nice before I made a release,.. -> will look at it when I when the time Cu Selur RE: Esxi running macos For selur - shijan - 10.10.2020 Quote:No clue what you think would be a better solution.If explain things simple - LEVELS and Limiter need only force RGB mode and always planes: all Quote:All those would have been nice before I made a release,.. Those problems where found earlier when i still have some hope that disableicons may back in future. As i told before because no disableicons and no UI resize in new versions of Hybrid i will no more participate in bug reports because i don't use newer versions. RE: Esxi running macos For selur - Selur - 10.10.2020 Quote:Some strange conflict with Waifu2xNvk/Waifu2x and TimeCube:I don't get what's strange. a. Waifu2xNvk in both cases returns RGBS b. in the second case Hybrid converts to RGB24 since it assumes TimeCube supports only supports RGB24, RGB27, RGB30, RGB32 and RGB48 don't see any info on the github page (https://github.com/sekrit-twc/timecube). -> assuming TimeCube supports RGBs I could add it to the list of compatible color spaces for the filter. Cu Selur RE: Esxi running macos For selur - Selur - 10.10.2020 Quote:If explain things simple - LEVELS and Limiter need only force RGB mode and always planes: allI thought RGB was only needed when gamma was used? RE: Esxi running macos For selur - shijan - 10.10.2020 From conversation with TimeCube developer: "The CUBE always operates on full range (actually 0-1 floats) internally." https://github.com/sekrit-twc/timecube/issues/4#issuecomment-685090200 So i guess it can easy support RGBS input. (10.10.2020, 14:55)Selur Wrote:Quote:If explain things simple - LEVELS and Limiter need only force RGB mode and always planes: allI thought RGB was only needed when gamma was used? As it appears after testing - it is not only for Gamma. Everything in LEVELS and Limiter require RGB. RE: Esxi running macos For selur - Selur - 10.10.2020 Quote:Everything in LEVELS and Limiter require RGB.If they require RGB, then the whole planes-parameter doesn't make sense,... (may be someone over at https://forum.doom9.org/showthread.php?p=1925443#post1925443 can clear this up) Cu Selur RE: Esxi running macos For selur - Selur - 10.10.2020 regarding mClean: seems like the temporalmedian library (https://github.com/dubhater/vapoursynth-temporalmedian) is missing. -> I'll remove it for MacOs until l33tmeatwad adds it to his list. Cu Selur RE: Esxi running macos For selur - shijan - 10.10.2020 (10.10.2020, 15:27)Selur Wrote:Quote:Everything in LEVELS and Limiter require RGB.If they require RGB, then the whole planes-parameter doesn't make sense,... Juts try to adjust Levels in/out min/max or Limiter in YUV and you will see same Green/Purple color shift artifact. RE: Esxi running macos For selur - Selur - 10.10.2020 I tried: clip = core.std.Levels(clip=clip, min_in=0, max_in=255, min_out=40, max_out=220) clip = core.std.Levels(clip=clip, min_in=40, max_in=220, min_out=40, max_out=220) both look as expected,... |