Fellow VideoHelp members,
I'm hoping to fix a official German PAL DVD.
The DVD in question seems to have some really annoying chroma issues in the motion.
It happens pretty often on playback so i decided to check the video in Avisynth to see what's up.
Using this script i could clearly see the problem in the chroma beeing related to the even field using chroma from the odd field.
It happens throughout the video quite often but it's not consistent.
Code:v = MPEG2Source("DONKEYKONG_DVD2.Title9.d2v", cpu=0) s = SeparateFields(v) e = SelectEven(s) o = SelectOdd(s) StackHorizontal(e.Subtitle("even field"), o.Subtitle("odd field"))
However i'm not quite sure how resolve this issue.
I've attached a m2v clip made using DGindex.
Appreciate any Avisynth advice thanks.
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 2 of 2
			
		- 
	
- 
	Try this: 
 
 It's not perfect but it's much better. I'd follow up with some noise reduction.Code:Mpeg2Source("DONKEYKONG_DVD2.Title9.demuxed.d2v", CPU2="ooooxx", Info=3) TFM(field=0) # restore out-of-phase parts to progressive frames SeparateFields() o = SelectOdd() e = SelectEven() e = MergeChroma(e, o) # replace chroma of even fields with chroma from odd fields (cleaner) Interleave(e,o) Weave()
Similar Threads
- 
  how can i offset the frames on the chroma channel in avisynthBy flashlight in forum RestorationReplies: 11Last Post: 5th Mar 2018, 20:15
- 
  Fix VHS chroma 'floating'By rds11 in forum RestorationReplies: 5Last Post: 20th Aug 2017, 20:23
- 
  Avisynth filter from Chroma noise removal?By Srivas in forum RestorationReplies: 5Last Post: 27th Dec 2015, 09:49
- 
  Avisynth, Change Chroma not LumaBy lolman in forum EditingReplies: 4Last Post: 18th Oct 2015, 12:33
- 
  Help Properly De-interlacing PAL CartoonBy TubeBar in forum Newbie / General discussionsReplies: 23Last Post: 26th May 2014, 08:21


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