PDA

View Full Version : Strange freeze/flick problem


FreierGeist
5th February 2002, 18:50
I'm posting this sample http://hypokeimenon.hypermart.net/sample.zip that shows what i mean...
i used this .avs:
#
# Created with Gordian Knot
#
# http://thewef.nav.to
#
# PLUGINS
# get them from http://users.win.be/dividee
LoadPlugin("C:\PROGRA~1\GORDIA~1\mpeg2dec.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\Decomb.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\InverseTelecine.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\Avisynth_Spatial.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\GreedyHMA.dll")
#LoadPlugin("C:\WINDOWS\System32\vobsub.dll")
#
# SOURCE
mpeg2source("C:xxx.d2v")
#
# TRIM
#trim(startframe,endframe)
#
# IVTC
#InverseTelecine(40,10,15)
# or use
#GreedyHMA(1,0,4,0,0,0,0,0)
#
# CROPPING
crop(25,66,679,350)
#
Telecide
Decimate(5)
#
# DEINTERLACING
#SmartDeinterlace(2,15,true,true,true)
# or use
#VerticalReduceBy2
# or maybe
#GreedyHMA(1,0,0,0,0,0,0,0)
#
# SUBTITLES
#VobSub("FileName")
#
# RESIZING
BicubicResize(592,336,0,0.5)
#
# DENOISING: choose one combination (or none)
# 1) little noise (fast)
#TemporalSmoother(2,1)
#
# 2) medium noise (slow)
#SpatialSoftenMMX(1,4,6,false,false,4,4,6,8)
#TemporalSmoother(2)
#
# 3) heavy noise (very slow, you have been warned)
#SpatialSoftenMMX(2,4,6,false,false,4,4,6,8)
#TemporalSmoother(3)
#SpatialSoftenMMX(1,4,6,false,false,4,4,6,8)
#
# BORDERS
#AddBorders(left,top,right,bottom)
#
# COMPRESSIBILITY CHECK
# !Snip Size has to be 13 for use in GKnot!
#SelectRangeEvery(260,13)
#
# FOOL CCEnc
#ResampleAudio(44100)



ps.: i used Decomb 1.91
the source is a 4:3 @ 29.970, NSTC (always), frame type: Interlaced (always)
the movie has 91min and it was encoded (both passes) directly thru GKnot (DivX3.11a), the .avi file has come with 553MB

you'll notice a freezee/flick when the man drink the wine
if someone have a clue on how to solve it, i'll be thankfull
the .d2v was @ 29.970FPS and i calculate the settings to fit a 23.976fps (changing the FPS besides the "Open" (the .d2v file) buttom)

Thanks!!!

[]s

jggimi
5th February 2002, 21:43
maybe it's my eyes, or my video card... but I don't see the problem. Using ATI Rage Mobility on a laptop. Used BSPlayer and Vdub.

neuron2
5th February 2002, 23:03
Can't get the video because it downloads with size 0, but I can tell you that the Crop line is wrong. You have to have your width a multiple of 4. Also, you'll get faster performance, believe it or not, if you put null parentheses on Telecide:

Telecide()

Finally, if it is pure interlaced material, use FieldDeinterlace(true) instead of Telecide(). And why would you want to Decimate a pure interlaced stream?

FreierGeist
6th February 2002, 00:49
hmmmm
ok neuron2, thank you very much!
but, try to download my sample @ http://hypokeimenon.hypermart.net/sample.zip , please, then you can analyse what's causing the flicker/freezee
will try with the right settings now
:)
and... i'm using Telecide because i want to IVTC also :)

[]s
thanks again!

neuron2
6th February 2002, 04:11
@Freier

That appears to be the processed OUTPUT clip. I can't do much with that now can I? Give me the source clip, please. Thank you.

Yes, I do see the little jerk. But without the source clip I cannot definitively diagnose the cause.

You may *want* to IVTC, but if it is pure interlaced video and not telecined film content, you SHOULD NOT decimate, because it can cause exactly this kind of problem. Tell me again slowly, why do you *want* to IVTC this clip? Remember you said it was pure interlaced video. And note I asked why you are using Decimate, not Telecide.