Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. |
|
|
Thread Tools | Search this Thread | Display Modes |
12th August 2019, 20:16 | #1 | Link |
Registered User
Join Date: Jan 2009
Posts: 31
|
Do you know how to avoid this ghosting or eliminate it?
Well, try to remove the interlacing of these avi videos but the source has a ghost effect
Then I leave two videos, they are different since they come from different sources vhs, I know they take a lot, but if you can help me, I would appreciate it. Last edited by terminator3; 15th August 2019 at 09:07. |
12th August 2019, 23:58 | #2 | Link |
Registered User
Join Date: Jan 2012
Location: Mesopotamia
Posts: 2,589
|
Code:
AVISource("E:\Fly07-08.avi") AssumeTFF() tfm.TDecimate(1) #or AnimeIVTC since it old source
__________________
See My Avisynth Stuff |
14th August 2019, 17:49 | #3 | Link | |
Registered User
Join Date: Jan 2009
Posts: 31
|
Quote:
From cap 13 or 14 there is no way to avoid ghosting, look https://drive.google.com/file/d/1vJ8...ew?usp=sharing Last edited by terminator3; 15th August 2019 at 09:06. |
|
15th August 2019, 19:14 | #4 | Link | |
Registered User
Join Date: Jan 2012
Location: Mesopotamia
Posts: 2,589
|
Quote:
Code:
AVISource("E:\Fly17-18.avi") AssumeTFF() tfm.TDecimate(1)
__________________
See My Avisynth Stuff |
|
15th August 2019, 21:13 | #5 | Link | |
Registered User
Join Date: Jan 2009
Posts: 31
|
Quote:
the configuration is the same that you have put before, and so that you see that the ghost effect is, I show you these captures: and it is here, it seems as if the lines were interlaced, especially on the left side of the image Last edited by terminator3; 15th August 2019 at 21:27. |
|
15th August 2019, 22:32 | #6 | Link |
Registered User
Join Date: Jan 2012
Location: Mesopotamia
Posts: 2,589
|
ok, I see it now, did you tried animeivtc(2) or sanimebob.srestore(frate=23.976) ?
__________________
See My Avisynth Stuff |
15th August 2019, 23:28 | #7 | Link |
Registered User
Join Date: Dec 2005
Location: Germany
Posts: 1,810
|
This seems to kill most of the blends
Cdeblend( dclip=crop(last, 20,20,-20,-20)) srestore( speed=-22, dclip = crop(last, 20,20,-20,-20)) srestore( frate = 23.976, mode =4, speed=-22, dclip = crop(last, 20,20,-20,-20)) (translated from vapoursynth script) clip = muf.Cdeblend(clip, dclip=core.std.CropRel(clip, 20,20,20,20)) clip = haf.srestore(clip, speed=-22, dclip = core.std.CropRel(clip, 20,20,20,20)) clip = haf.srestore(clip, frate = 23.976, mode =4, speed=-22, dclip = core.std.CropRel(clip, 20,20,20,20))
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth VapourSynth Portable FATPACK || VapourSynth Database |
16th August 2019, 16:43 | #8 | Link | |
Registered User
Join Date: Jan 2009
Posts: 31
|
Quote:
|
|
17th August 2019, 01:21 | #9 | Link |
Registered User
Join Date: Jan 2012
Location: Mesopotamia
Posts: 2,589
|
ChaosKing code maybe very ruthless that can make the motions not smooth so here another method
Code:
AVISource("E:\Fly17-18.avi") AssumeTFF() animeivtc(2,mode22=true) #you can play with another parameters as you need
__________________
See My Avisynth Stuff Last edited by real.finder; 17th August 2019 at 02:12. |
Tags |
eliminate, ghosting, interleaced, remove, vhs |
Thread Tools | Search this Thread |
Display Modes | |
|
|