![]() |
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
109
|
RE: Deoldify Vapoursynth filter - Dan64 - 14.05.2024 Hello Selur, Leveraging on the experience in developing vs-deoldify I'm planning to develop a new filter: HybridAVC = Hybrid Automatic Video Colorizer Where I will integrate: DeOldify, DDColor and Deep-Exemplar based Video Colorization Deep-Exemplar is able to provide a temporal video stabilization and need to be rewrote in some part to get something useful, is similar to Bistnet, but is simpler and faster. When I will have something working I will post the new filter, be patient... Dan RE: Deoldify Vapoursynth filter - Bartoloni - 14.05.2024 (14.05.2024, 09:29)Dan64 Wrote: When I will have something working I will post the new filter, be patient... very very thank you for your work! RE: Deoldify Vapoursynth filter - Akila - 14.05.2024 the initial post is really not clear on how to install/use in Hybrid, and I ended up doing lots of google to try figure out things and I did not manage to make it work. for example: I wasn't even able to Install fastai... C:\Program Files\Python312>python -m pip fastai=1.0.60 Is there a Step by Step tutorial on how to install and use it in Hybrid? RE: Deoldify Vapoursynth filter - Dan64 - 14.05.2024 The simplest way is to install Hybrid: https://www.selur.de/downloads Since to get Hybrid working is necessary to install a lot of packages. It is available an archive with all the necessary packages: GoogleDrive Here the instructions provided by Selur Quote:These addons are Windows only! Dan RE: Deoldify Vapoursynth filter - Akila - 14.05.2024 I am not talking about Hybrid (I have been using Hybrid for 2 years now), I am talking about your plugin... RE: Deoldify Vapoursynth filter - Selur - 14.05.2024 Quote:Where I will integrate: DeOldify, DDColor and Deep-Exemplar based Video ColorizationProblem is usually having references, but looking forward to it, to play with it. ![]() (Or do you want to generate these?) Cu Selur RE: Deoldify Vapoursynth filter - Selur - 14.05.2024 Quote:I am not talking about Hybrid (I have been using Hybrid for 2 years now), I am talking about your plugin...He, is too. His plugin is available in Hybrid under 'Filtering->Vapoursynth->Coloring->DeOldify' assuming you have a newer NVIDIA card and the torch-addon of Hybrid installed. Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 14.05.2024 I need to change DeOldify and DDColor to work with VideoFrame instead of VideoNode. To do that I need to create a custom version of DDColor since I cannot change the DDColor repository I'm the owner of DeOldify filter so I could change vs-deoldify. But I prefer to don't touch vs-deoldify because now is stable. So I will build a new filter where I will introduce some new feature respect to vs-deoldify: scene detection, reference frame generation, temporal frame stabilization, and probably I will reuse some of the pre/post filters already developed for vs-deoldify. This new filter will be slower than vs-deoldify, and probably will be only a little more stable but with more vivid colors, so vs-deoldify will be still a viable alternative for users not having powerful GPUs. Dan RE: Deoldify Vapoursynth filter - Akila - 14.05.2024 (14.05.2024, 17:49)Selur Wrote:Quote:I am not talking about Hybrid (I have been using Hybrid for 2 years now), I am talking about your plugin...He, is too. I Installed the Modules but when I try to process the job, i get a crash... If I disable the Coloring Filter (DeOldify), it process the video fine without a problem. ![]() RE: Deoldify Vapoursynth filter - Selur - 14.05.2024 Quote:If I disable the Coloring Filter (DeOldify), it process the video fine without a problem.(I assume you deinstalled any modified Hybrid before adding the torch-addon.) First thing I would recommend checking is whether the Vapoursynth Preview works. It usually shows error messages that might help to figure out where the problem is. Cu Selur |