Usually found by the edge of the video, sometimes the right side, other times the left. Tends to shift between green and pink/purple depending on the content. First line is generally the strongest in color, then the second is more faded. Found on ADV DVDs from 2000, not something introduced by any filters I'm using.
[Attachment 58952 - Click to enlarge]
[Attachment 58953 - Click to enlarge]
[Attachment 58954 - Click to enlarge]
[Attachment 58955 - Click to enlarge]
Normally I'd just crop it out, but lately I've been wondering if there's a a better way, a way that might eliminate it and have those pixels look their correct colors.
Any possible combination of AviSynth filters that might accomplish this? Or is it just impossible to fix and cropping is all anyone can do?
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 9 of 9
			
		- 
	Last edited by GlitchBob; 17th May 2021 at 23:15. 
- 
	My interpretation: 
 The solid black is probably due to pillarboxing or padding of the active picture to 720 pixel standard DVD width.
 The 2 colored rows is ringing from filters or from the encoding process due to the sharp transition from full black to the active picture.
 Crop the source before encoding to prevent sharp transitions from pillarboxing leftovers to the active picture, or just crop it off for viewing.Last edited by Sharc; 17th May 2021 at 02:35. 
- 
	You can stretch or copy the good chroma from just to the left of discolored area over the discolored area. 
 
 Code:ImageSource("green_lines.png", start=0, end=23, fps=23.976) ConvertToYV12() patch = Overlay(last, Crop(714,0,4,-0), x=716, y=0) MergeChroma(last, patch)
 [Attachment 58969 - Click to enlarge]
- 
	Last edited by GlitchBob; 19th May 2021 at 04:14. 
- 
	Add another patch: 
 Code:ImageSource("green_lines.png", start=0, end=23, fps=23.976) ConvertToYV12() patch = Overlay(last, Crop(714,0,4,-0), x=716, y=0) patch = Overlay(patch, patch.Crop(4,0,4,-0), x=0, y=0) MergeChroma(last, patch)
- 
	Here's a variation that stretches the chroma from the good areas rather than copying it: 
 
 Code:ImageSource("green_lines.png", start=0, end=23, fps=23.976) ConvertToYV12() patch = Overlay(last, Crop(716,0,2,-0).PointResize(4,height), x=716, y=0) patch = Overlay(patch, patch.Crop(2,0,2,-0).PointResize(4,height), x=0, y=0) MergeChroma(last, patch)
- 
	
- 
	The BorderControl filter is good for this sort of thing: 
 
 BorderControl(XRS=3,XRSF=3)
Similar Threads
- 
  Green/pink vertical stripe on the right of a captured Video 8 AVIBy ringo1 in forum Capturing and VCRReplies: 21Last Post: 16th Jan 2021, 17:32
- 
  Flickering Green/Pink Lines?By Okiba in forum RestorationReplies: 7Last Post: 16th Jan 2021, 02:27
- 
  Green & Pink Lines on VHS CaptureBy Slam in forum Capturing and VCRReplies: 3Last Post: 13th Jun 2020, 13:56
- 
  (avermedia card) Green and Pink screen after DVR software updateBy Bruces in forum Capturing and VCRReplies: 6Last Post: 4th Jun 2017, 01:55
- 
  Green / Pink corruption, playback issue with MPC-HC X64 and madVRBy manzurfahim in forum Software PlayingReplies: 0Last Post: 5th May 2017, 03:01


 
		
		 View Profile
				View Profile
			 View Forum Posts
				View Forum Posts
			 Private Message
				Private Message
			 
 
			
			 
			

 Quote
 Quote
