I have been getting this weird flicker when i deinterlace my videos. I checked my source and it not there but after i deinterlace it is could i be qtgmc this just started happening out of nowhere and i dont know what is causing it. I thought my field oder was screwed up but after running the same video with it set to tff and bff and it still being there im just stumped i notice it around the numbers and letters on screen help me please .
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 15 of 15
			
		- 
	
- 
	you should post an unprocessed sample of the source , and the script you are currently using 
- 
	Alrighty 
 
 First pic is reencode 2nd pic is source
 
 
 
 
 TASK
 ------------------------------
 Format: MP4
 Duration: 00:09:27:933 (17038)
 VideoDecoder: DirectShowSource
 Resolution: 720x480 > 720x408
 Aspect: 1.9444 > 1.7778
 VCodecPreset: x264 Q18 HQ
 VEncodingMode: Quality
 VideoCodec: JPEG > x264
 VideoBitrate: 17952 > Q18.0
 Framerate: 30.000
 SourceType: INTERLACED
 FieldOrder: VARIABLE
 Deinterlacer: QTGMC
 AEncodingPreset: AAC-LC VBR 0.40
 AudioCodec: PCM > AAC
 AudioBitrate: 1411 > VBR
 Samplerate: 44100
 Channels: 2
 Normalize: 100%
 Accurate: 10%
 Gain: 7.354
 
 
 SCRIPT
 ------------------------------
 Import("C:\Program Files\dlls\AviSynth\functions\AudioFunctions.avs")
 Import("C:\Program Files\dlls\AviSynth\functions\VideoFunctions.avs")
 Import("C:\Program Files\dlls\AviSynth\plugins\QTGMC.avs")
 LoadPlugin("C:\Program Files\dlls\AviSynth\plugins\mvtools2.dll")
 LoadPlugin("C:\Program Files\dlls\AviSynth\plugins\RemoveGrainSSE2.dll")
 LoadPlugin("C:\Program Files\\dlls\AviSynth\plugins\RepairSSE2.dll")
 LoadPlugin("C:\Program Files\dlls\AviSynth\plugins\mt_masktools-26.dll")
 LoadPlugin("C:\Program Files\dlls\AviSynth\plugins\fft3dfilter.dll")
 #LoadPlugin("C:\Program Files\dlls\AviSynth\plugins\VerticalCleaner.dll")
 LoadPlugin("C:\Program Files\dlls\AviSynth\plugins\nnedi3.dll")
 #LoadPlugin("C:\Program Files\dlls\AviSynth\plugins\EEDI3.dll")
 #LoadPlugin("C:\Program Files\dlls\AviSynth\plugins\EEDI2.dll")
 LoadCPlugin("C:\Program Files\dlls\AviSynth\plugins\yadif.dll")
 #LoadPlugin("C:\Program Files\dlls\AviSynth\plugins\TDeint.dll")
 #LoadPlugin("C:\Program Files\dlls\AviSynth\plugins\AddGrainC.dll")
 
 
 DirectShowSource("C:\Users\Documents\Draft\Tales Source.avi", fps=30.000, convertfps=true)
 
 
 ConvertToYV12(interlaced = true)
 QTGMC(Preset="Slow", Sharpness=0.9, FPSDivisor=2)
 
 
 ###[FILTERING]###
 ###[FILTERING]###
 
 
 Crop(20, 58, -0, -62)
 Lanczos4Resize(720, 408)
 
 
 AmplifydB(7.354)
 
 
 
 Im thinking it may be the left crop 20 but im not a video expert so idk.
- 
	
 
 
 Not the crop ; because it's already been deinterlaced before the crop is applied, and the crop values are mod2 in YV12
 
 The status overlays of the "characters" are aliased (edges look all "jaggy") - that almost looks like a simple bob was applied, not QTGMC
 
 DirectShowSource() might be causing some of your issues, try replacing it with AVISource()
 
 If you still can't figure it out, upload an unprocessed sample of the source video
- 
	The sharpness setting in QTGMC is pretty strong. It already does some sharpening by default and if I want to sharpen more afterwards I use something else (usually LSF). I'd try leaving it off and see if the aliasing improves. Maybe it's that aliasing that you're referring to as 'flicker'. 
- 
	My guess would be you have some filter applying a deinterlace in your directshow chain, before QTGMC even touches it 
 
 The 1st one is QTGMC alone, the 2nd one simulates what happens when some directshow filter deinterlaces it first . That 2nd one will flicker in motion
- 
	Hmm so directshow could be the problem i will try switching to avi source sorry about that i didn't know you meant the actual source video.I did try it a few times with sharpness off still got the same thing any way here is the source video. 
- 
	QTGMC is just getting confused (and resorting to something like a simple bob) when the picture behind the text is changing a lot. Last edited by jagabo; 17th Jan 2014 at 18:38. 
- 
	It's actually a very good test clip . 
 
 There are problem sections where every deinterlacer will fail or show problems. Each deinterlacer has strengths/weaknesses. There is no single deinterlacer that will work "best" here
 
 QTGMC will probably still produce "better results overall" . But in sections where it has problems you might replace or overlay sections with other deinterlacers with masksLast edited by poisondeathray; 17th Jan 2014 at 19:23. 
- 
	Can you play and record at 720p60? That would probably be your best option. 
 
 Here's an example of using a mask:
 
 The mask:Code:AviSource("Tales Source Clip.avi") AssumeTFF() ConvertToYV12(interlaced=true) mask = ImageSource("Tales Mask.png").ConvertToYV12(matrix="PC.601").Blur(1.0).Blur(1.0).Blur(1.0) v1=QTGMC() v2=Blur(0,1.0).Sharpen(0,0.7).SelectEvery(1,0,0) # fast blend deinteralce and sharpen Overlay(v1,v2,0,0,mask) Crop(20, 58, -0, -62)
 
 
 
 Substitute whatever alternate deinterlacer you want for v2. And you can make a more form-fitting mask.
 
 By the way, I think you need to set your MJPEG encoder interlaced mode.Last edited by jagabo; 17th Jan 2014 at 20:58. 
- 
	I usually do but i got really low on hard drive space and i had to lower things just to get by until i could compress stuff.Cool thanks for the mask ill give a go i just checked in ffd show and assumed interlaced if height wasn't checked so i did that. Trying it out now hopefully all will be well thanks for the help. 
- 
	Alright i ran this clip through just about every deinterlacer and i found one that worked it's not the best but it will get the job done check it out. 
- 
	not to threadjack but since this thread ended up tangentially being about how various deinterlacers compare to one anothe, does anyone know of any app that uses intel's hardware QS deinterlacer? 
 
 A's video convertor claims to support it but i've never gotten that app to work properly in any capacity on my system and i was just wondering how hardware based deinterlacers would compare to software based one.
 
 and yes, i have googled like a madman, i can't find any.
- 
	q264 and QSTranscode both can use it, but I'm not sure if QuickSyncs Decoder&Deinterlace can be used for (motion)jpeg contentany app that uses intel's hardware QS deinterlacer?Last edited by Selur; 21st Jan 2014 at 07:31. 
Similar Threads
- 
  Trying to negate a weird Chroma bob after deinterlacing, PVR150By AG-Wolf in forum Capturing and VCRReplies: 30Last Post: 10th Apr 2012, 17:03
- 
  Deinterlacing with Tdeint, weird artifactsBy Locke in forum Video ConversionReplies: 8Last Post: 21st Dec 2011, 17:18
- 
  Weird, very weird thing demuxing a DVDBy jairovital in forum EditingReplies: 17Last Post: 22nd Oct 2010, 19:31
- 
  Flicker on DVD MenuBy Funky Monk in forum Authoring (DVD)Replies: 1Last Post: 12th Sep 2009, 18:42
- 
  Strange flicker on my DVD-RsBy ministry88 in forum DVD & Blu-ray RecordersReplies: 17Last Post: 6th Mar 2009, 23:43


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

 Visit Homepage
				Visit Homepage
			