![]() |
Deoldify Vapoursynth filter - 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: Deoldify Vapoursynth filter (/thread-3595.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: Deoldify Vapoursynth filter - Selur - 08.02.2025 'video' is a bad choice of word here. We need to get that wording into something understandable. Is it: # 0 "HAVC only, no references"; // ScFrameDir = None Cu Selur Ps.: Updated Hybrid_deoldify. RE: Deoldify Vapoursynth filter - Dan64 - 08.02.2025 The correct definition is the following 0 = HAVC same as video // clipRef=HAVC, ScFrameDir = None Since the custom section was removed, I added more ColorModel 'Video+Artistic' Added new RC7 with the new color models. Dan RE: Deoldify Vapoursynth filter - Selur - 08.02.2025 Quote:The term "same as video" imply that the frame provided (from file o clip) is equal to the frame to be colored with the only exception of colors.Ahhhh,... okay. Updated Hybrid_deoldify. Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 09.02.2025 Found a problem with RefMerge because is disabled, here the full mapping 0 = HAVC same as video // clipRef=HAVC, ScFrameDir = None, RefMerge Enabled Ref Merge requires not only that the source of RF is "same as video" but also that the RF is provided by a video clip produced by HAVC (methods: 0, 1) or externally by another tool (method 5) I added the new value "None" to preset ColorTune (in the GUI is called "Denoise") Now allowed values are: 'None' 'Light', (default) 'Medium', 'Strong', Since the custom section was removed, it is necessary to add a new preset to define the combination methods, the new preset is called CombMethod CombMethod: Method used to combine coloring models with (+): If the selected ColorModel does not contain the string "+" (like 'Video+Artistic') CombMethod should be Disabled. I attached the new RC8. Thanks, Dan RE: Deoldify Vapoursynth filter - Selur - 09.02.2025
Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 09.02.2025 (09.02.2025, 09:29)Selur Wrote: Updated Hybrid_deoldify. (RC7 does not include 'CombMethod' => "HAVC_main() got an unexpected keyword argument 'CombMethod'"). In effect this method was included in RC8, attached in the previous post. Thanks, Dan RE: Deoldify Vapoursynth filter - Selur - 09.02.2025 Ah missed RC8 ![]() RE: Deoldify Vapoursynth filter - Selur - 09.02.2025 updated Hybrid_deoldify, remved sc_debug RE: Deoldify Vapoursynth filter - Dan64 - 09.02.2025 When is selected value "None" for the preset ColorTune (in the GUI is called "Denoise") In the script is passed None instead of "none". Dan RE: Deoldify Vapoursynth filter - Selur - 09.02.2025 updated Hybrid_deoldify to pass a string |