So for some really absurd reason, Sony managed to release this series on DVD in PAL format (25fps, 720x576) but it's all interlaced. The series was not made that way, so it's quite curious.
In any event, I cannot figure out how to get it properly deinterlaced. My best attempt was with nnedi3, which retains the 25fps, but the deinterlaced frames are a tad jagged and have some "shimmering". Any assistance would be greatly appreciated.
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 6 of 6
			
		- 
	Last edited by GlitchBob; 11th Nov 2023 at 00:42. 
- 
	Sometimes the fields in PAL movies are offset this way, 
 try
 Code:mpeg2source(....) assumetff() tfm() 
- 
	Yes, it's mostly progressive video which is encoded as interlaced with occasional field shifts. It has probably been done like this for framerate conversion to 25fps. 
 TFM(mode=1,pp=6) will match the fields and return the progressive frames, and deinterlace only the remaining orphaned fields for which no match is found.
 http://avisynth.nl/index.php/TIVTC
 
 
 Also try
 Edit:Code:AssumeTFF() QTGMC(FPSDivisor=2) 
 You may want to compare and optimize the 2 variants like
 Left is QTGMC, right is TFM:Code:LWLibavVideoSource("WhySonyWhy.m2v") assumeTFF() left=QTGMC(FPSDivisor=2) right=TFM(mode=1,pp=6,display=true) stackhorizontal(left,right)Last edited by Sharc; 11th Nov 2023 at 05:27. 
- 
	
- 
	Here another proposal using BWDIF with nnedi3: 
 
 Code:LWLibavVideoSource("WhySonyWhy.m2v") BWDIF(field=1,edeint=nnedi3())Last edited by Sharc; 11th Nov 2023 at 06:19. 
Similar Threads
- 
  Best solution for deinterlacing hybrid content to VFR progressive?By Pendell in forum Video ConversionReplies: 14Last Post: 30th Jul 2023, 12:10
- 
  Is Deinterlacing the same as Progressive?By magnu in forum Video ConversionReplies: 2Last Post: 30th May 2021, 23:54
- 
  Deinterlacing Progressive PAL with Interlaced fades (PAL Hybrid)By ajingo in forum Video ConversionReplies: 11Last Post: 17th Dec 2020, 12:14
- 
  Deinterlacing A Progressive VideoBy ampal16999 in forum Video ConversionReplies: 1Last Post: 22nd Jun 2020, 10:43
- 
  Deinterlacing PAL HD video that's been converted to NTSC.By xenodj in forum Video ConversionReplies: 15Last Post: 17th Mar 2020, 10:04


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

 Quote
 Quote 
 
			
			