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.

 

Go Back   Doom9's Forum > Capturing and Editing Video > Avisynth Usage

Reply
 
Thread Tools Search this Thread Display Modes
Old 12th August 2019, 20:16   #1  |  Link
terminator3
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.
terminator3 is offline   Reply With Quote
Old 12th August 2019, 23:58   #2  |  Link
real.finder
Registered User
 
Join Date: Jan 2012
Location: Mesopotamia
Posts: 2,587
Code:
AVISource("E:\Fly07-08.avi")
AssumeTFF()
tfm.TDecimate(1) #or AnimeIVTC since it old source
work fine no ghosting
__________________
See My Avisynth Stuff
real.finder is offline   Reply With Quote
Old 14th August 2019, 17:49   #3  |  Link
terminator3
Registered User
 
Join Date: Jan 2009
Posts: 31
Quote:
Originally Posted by real.finder View Post
Code:
AVISource("E:\Fly07-08.avi")
AssumeTFF()
tfm.TDecimate(1) #or AnimeIVTC since it old source
work fine no ghosting
Thank you very much,

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.
terminator3 is offline   Reply With Quote
Old 15th August 2019, 19:14   #4  |  Link
real.finder
Registered User
 
Join Date: Jan 2012
Location: Mesopotamia
Posts: 2,587
Quote:
Originally Posted by terminator3 View Post
Thank you very much,

From cap 13 or 14 there is no way to avoid ghosting, look

https://drive.google.com/file/d/1vJ8...ew?usp=sharing
Code:
AVISource("E:\Fly17-18.avi")
AssumeTFF()
tfm.TDecimate(1)
work also fine, you must be more specific by tell what frame or time and post image for the problem, and even post your script
__________________
See My Avisynth Stuff
real.finder is offline   Reply With Quote
Old 15th August 2019, 21:13   #5  |  Link
terminator3
Registered User
 
Join Date: Jan 2009
Posts: 31
Quote:
Originally Posted by real.finder View Post
Code:
AVISource("E:\Fly17-18.avi")
AssumeTFF()
tfm.TDecimate(1)
work also fine, you must be more specific by tell what frame or time and post image for the problem, and even post your script
Well, in the whole chapter, if you download the chapter that I put you last, the whole chapter suffers from ghosting, and also in fast scenes, the lines look as if the interlacing was not effective in the fast scenes

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.
terminator3 is offline   Reply With Quote
Old 15th August 2019, 22:32   #6  |  Link
real.finder
Registered User
 
Join Date: Jan 2012
Location: Mesopotamia
Posts: 2,587
ok, I see it now, did you tried animeivtc(2) or sanimebob.srestore(frate=23.976) ?
__________________
See My Avisynth Stuff
real.finder is offline   Reply With Quote
Old 15th August 2019, 23:28   #7  |  Link
ChaosKing
Registered User
 
Join Date: Dec 2005
Location: Germany
Posts: 1,795
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
ChaosKing is offline   Reply With Quote
Old 16th August 2019, 16:43   #8  |  Link
terminator3
Registered User
 
Join Date: Jan 2009
Posts: 31
Quote:
Originally Posted by ChaosKing View Post
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))
What do I put at the end of everything in the script? ok for normal? or just for steam?
terminator3 is offline   Reply With Quote
Old 17th August 2019, 01:21   #9  |  Link
real.finder
Registered User
 
Join Date: Jan 2012
Location: Mesopotamia
Posts: 2,587
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.
real.finder is offline   Reply With Quote
Old 17th August 2019, 14:24   #10  |  Link
terminator3
Registered User
 
Join Date: Jan 2009
Posts: 31
Quote:
Originally Posted by real.finder View Post
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
thanks, I will try both methods, if you can think of anything else tell me
terminator3 is offline   Reply With Quote
Reply

Tags
eliminate, ghosting, interleaced, remove, vhs

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 20:07.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.