Log in

View Full Version : De-Interlacing trouble


snake-boy
11th July 2002, 15:01
Hi,

I have two questions that I hope someone could help me out with, the first is:

- What is the difference between "Fast Deinterlace" and "Field Deinterlace" ? In other words, when should I use the one and not the other and visa-versa?

- Secondly, decomb.dll: I cannot get this to work, no matter what I try. I have followed the guides, and searched this forum for advise, but it seems I am the only one having this problem:

I setup everything as per the guide, ready to encode, but as soon as I start, gknot returns the following:

<snip>
03:48:42 PM: IVTC: Re-Calculating Frame Count.
03:48:42 PM: IVTC: FrameRate was 29.970 fps
03:48:42 PM: IVTC: FrameRate now is 23.976 fps
03:48:42 PM: IVTC: 142585 Frames.
03:48:42 PM: Audio 1, determined: 84567 kb
03:48:42 PM: Audio 1, calc: 84567 kb
03:48:42 PM: New Bitrate for Movie = 830 k(=1000)Bits/s

03:48:42 PM: Started DivX5-First Pass: F:\encoding\patlabour_jap.avs
03:48:43 PM: Finished DivX5-First Pass. Duration: 1 second.
03:48:43 PM: Trying to open Log-file.
03:48:43 PM: Error: Could not open F:\encoding\patlabour_jap_4.log
03:48:43 PM: Error: Could not count encoded Frames.
03:48:43 PM: Speed: 0.000 Frames per Second.
03:48:43 PM: WARNING: Number of counted frames differs from settings!
03:48:43 PM: WARNING: Settings: 142585
03:48:43 PM: WARNING: Counted: 0
03:48:43 PM: WARNING: Difference: 142585
03:48:43 PM: Correcting Bitrate...
03:48:43 PM: Original Bitrate = 830 k(=1000)Bits/s
03:48:43 PM: ERROR: Correction impossible.
03:48:43 PM: Now encoding at 830 k(=1000)Bits/s

03:48:43 PM: Started DivX5-Second Pass: F:\encoding\patlabour_jap.avs
03:48:47 PM: Finished DivX5-Second Pass. Duration: 4 seconds.
03:48:47 PM: Speed: 0.000 Frames per Second.
03:48:47 PM: Started Appending Credits and Muxing Audio.: F:\encoding\patlabour_jap_4_Movie.avi
03:48:53 PM: Finished Appending Credits and Muxing Audio.. Duration: 5 seconds.

03:48:53 PM: Done.
03:48:53 PM: Movie = F:\encoding\patlabour_jap_4.avi
Total Encoding Time: 11 seconds.
2002/07/11 03:48:53 PM: Job "Movie 3" finished.
</snip>
The patlabour_jap_4.log file that it reports that it cannot open above _IS_ present in that folder. I can open it fine in notepad.
I have fiddled with settings over and over and over, but each and every time, I get the same thing. :( What am I doing wrong!?

In case it helps, this is my .avs
----------------
LoadPlugin("F:\PROGRA~1\GORDIA~1\mpeg2dec.dll")
LoadPlugin("F:\PROGRA~1\GORDIA~1\decomb.dll")
LoadPlugin("D:\WINDOWS\System32\vobsub.dll")
mpeg2source("F:\encoding\patlabour_jap.d2v")
Telecide()
Decimate(cycle=5)
crop(22,46,696,386)
VobSub("F:\encoding\vts_01_0")
BicubicResize(512,304,0,0.5)
----------------

I have checked my path's, my settings and even went as far as to reinstall Gnot, but still can't get this to work.

Could ANYONE please advise? At this stage I am willing to try anything to get this to work.

many thanks

-snake


(ps, I am encoding Patlabour the Movie DVD, dvd2avi reports as 29.970fps, interlaced, so I set force film to none in dvd2avi(?)) :scared:

jggimi
11th July 2002, 15:54
What is the difference between "Fast Deinterlace" and "Field Deinterlace" ? In other words, when should I use the one and not the other and visa-versa?
Fast Deinterlace is the VerticalReduceBy2 filter you see in the .avs scripts. It cuts resolution in half. Field Deinterlacing blends pixels. I often try both to see which looks better; as the choice between them is subjective and often content will make the difference.

I'm unable to diagnose your problem with DeComb. It looks to me like your first pass ran for 1 second -- not exactly the elapsed time you'd expect.

I'd try opening the .avs file in VDub, and see what things looks like. That way, if there s a failure, you may get more information. If the script with Telecide/Decimate works properly when you open the .avs file in VDub, then something else is causing the failure of the first pass.

Also, you can change the .avs script to use GreedyHMA or VerticalREduceBy2 should DeComb either fail or produce results you don't like when you inspect the frames in VDub.

manono
12th July 2002, 02:24
Hi-

I don't think it's a Decomb problem. Do as jggimi says and open the .avs in VDub and scroll around. Does it crash? If yes, then put a # in front of the vobSub line like so:

#VobSub("F:\encoding\vts_01_0")

Open it again in VDub and scroll around. Does it still crash? If no, then move the VobSub line to the end of the .avs like so:

LoadPlugin("F:\PROGRA~1\GORDIA~1\mpeg2dec.dll")
LoadPlugin("F:\PROGRA~1\GORDIA~1\decomb.dll")
LoadPlugin("D:\WINDOWS\System32\vobsub.dll")
mpeg2source("F:\encoding\patlabour_jap.d2v")
Telecide()
Decimate(cycle=5)
crop(22,46,696,386)
BicubicResize(512,304,0,0.5)
VobSub("F:\encoding\vts_01_0")

Open again and scroll around. Does it still crash? I bet not. Haven't you posted about this problem before?