digitalFAQ.com Forum

digitalFAQ.com Forum (https://www.digitalfaq.com/forum/)
-   Restore, Filter, Improve Quality (https://www.digitalfaq.com/forum/video-restore/)
-   -   Y/C delay correction filter? (https://www.digitalfaq.com/forum/video-restore/10218-delay-correction-filter.html)

WarbirdVideos 12-30-2019 12:56 AM

Y/C delay correction filter?
 
Is there a filter to correct for Y/C delay after an S-video capture to Virtualdub using Lagarith? I read that "flaxen" can do it, but flaxen is nowhere to be found.

Thanks,
Steve

themaster1 12-30-2019 01:53 AM

this avisynth script can do it :
Code:

avisource() # for interlaced source
assumetff()
separatefields()
A=Last
B=A.Greyscale()
Overlay(B,A,X=0,Y=-2,Mode="Chroma") # change values of X and Y according to your needs (Y=-2 is fine for vhs generally)
weave()


hodgey 12-30-2019 08:19 AM

The ChromaShiftSP is another simple option. As noted in the previous reply, if the source is interlaced you need to separate into fields before shifting chroma if altering in the y direction:
Code:

separatefields()
ChromaShiftSP(Y=-2)
weave()


lordsmurf 12-30-2019 10:11 AM

Quote:

Originally Posted by WarbirdVideos (Post 65457)
"flaxen" can do it, but flaxen is nowhere to be found.

flaXen is in the pre-loaded VirtualDub download on this site.
But I'd probably still opt for Avisynth when available.

Bogilein 12-30-2019 10:42 AM

2 Attachment(s)
ChromaShift V2.2.0 from JPSDR which is included in his filtres packet. Works in YUV color space.

Attachment 11001

Unzip and then put the Filtres_JPSDR.vdf file in your Virtual Dub plugin folder.

WarbirdVideos 12-30-2019 08:34 PM

Thanks Guys! Now I need to figure AviSynth and Virtualdub out.


All times are GMT -5. The time now is 11:49 PM

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.