VideoHelp Forum
+ Reply to Thread
Results 1 to 10 of 10
Thread
  1. helo guys,

    I want to ask something on my VOB video, I demuxed it on DGDecode and some lines appeared on it, I used Decomb dll but the lines still there. I play the VOB (source) on MpcStar and the lines not there. Can anyone help me about this?

    Here are the screenshots
    (The lines on the DGDcode are on the eyeglass)

    Source : http://www.mediafire.com/view/?rh1mk88v2j0r4c4#

    DGDcode : http://www.mediafire.com/view/?b634efmz3qg789q#

    Thanks
    Quote Quote  
  2. Pictures are next to useless. If you want us to help, provide an untouched sample from the VOB source, 10 seconds with steady movement. Open the VOB in DGIndex. Scroll to a suitable place. Use the [ and ] buttons to isolate a small piece. Then File->Save Project and Demux video. Upload that to MediaFire and provide the link.

    The reason I ask for a sample is so we can learn what you have. Maybe you don't see the interlacing when the movie is being played because it's being deinterlaced. Or maybe your TV set is an old CRT.

    Nothing you've said proves Decomb isn't working. If you only see small amounts of interlacing, maybe all you have to do is to reduce the VThresh so fine combing is picked up.
    Quote Quote  
  3. Guest34343
    Guest
    Also, please post your full Avisynth script. You may have erred with it.
    Quote Quote  
  4. Here is the Sample

    Untouched : http://www.mediafire.com/?4hajaydq86zq4bo

    Script :

    LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
    LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dl l")
    LoadPlugin("C:\PROGRA~1\AutoGK\filters\decomb.dll" )
    LoadPlugin("C:\PROGRA~1\AutoGK\filters\vsfilter.dll")
    LoadPlugin("C:\PROGRA~1\AutoGK\filters\ColorMatrix .dll")
    LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrain SSE3.dll")

    movie = mpeg2source("E:\agk_tmp\movie.d2v")
    cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples= 10,aspect=0,threshold=34,samplestartframe=0,leftad d=0,rightadd=0,topadd=0,bottomadd=0)
    fixed_aspect = 0.888888888888889
    c_width = width(cropclip)
    c_height = round(height(cropclip) / fixed_aspect)
    input_par = float(c_width)/float(c_height)
    input_par = (input_par > 1.4) || (input_par < 1.25) ? input_par : (4.0/3.0)
    out_width = 704
    out_height = round(float(out_width) / input_par)
    hmod = out_height - (floor(out_height / 16 ) * 16)
    out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
    new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
    autocrop(movie,mode=0,wmultof=4,hmultof=4,samples= 10,aspect=new_aspect,threshold=34,samplestartframe =0,leftadd=0,rightadd=0,topadd=0,bottomadd=0)
    LanczosResize(out_width,out_height)
    RemoveGrain(mode=2)
    ColorMatrix("Rec.709->Rec.601",opt=0,hints=false)

    Telecide(movie,guide=1,post=2).Decimate(mode=3,thr eshold=1.87)
    Last edited by slarke; 21st Oct 2012 at 04:24. Reason: Did not copy from the previous
    Quote Quote  
  5. Banned
    Join Date
    Oct 2004
    Location
    New York, US
    Search Comp PM
    Your script loads decomb.dll, but I don't see a statement that executes it.
    Last edited by sanlyn; 23rd Mar 2014 at 11:03.
    Quote Quote  
  6. Originally Posted by sanlyn View Post
    Your script loads decomb.dll, but I don't see a statement that executes it.
    I include now the statement for the decomb.
    Sorry for the mistake
    Quote Quote  
  7. Since you're using AutoGK, please post its log so we can see what it decided.

    However, AutoGK can't handle this kind of a mess. It's blended and it also looks to me as if the fields themselves are slightly interlaced (or aliased) and no regular deinterlacer can handle this.

    It's been telecined and then blend deinterlaced. I tried this:

    Yadif(Mode=1)
    Vinverse()
    SeparateFields()
    SelectEvery(4,0,3)
    Weave()
    SRestore(omode="pp3")
    Decimate()#From Decomb
    #TDecimate(Mode=0,Cycle=15,CycleR=3)#from TIVTC, maybe better.


    But Vinverse didn't clean up the interlacing or aliasing or whatever it is very much. Maybe a dedicated anti-aliaser is called for. The 'real' framerate is supposed to be 23.976fps. You'll have to do this one manually as no all-in-one program, no matter how good, can do it. And your problem has nothing to do with Decomb.
    Last edited by manono; 21st Oct 2012 at 05:24.
    Quote Quote  
  8. Yes, the video is encoded interlaced but contains progressive frames. It was poorly deinterlaced before you got it. I'd start with:

    Code:
    PointResize(width, height/2)
    nnedi3_rpow2(2)
    BicubicResize(width/2, height)
    Or this will clean up the DCT ringing a bit:

    Code:
    SeparateFields()
    Merge(SelectEven(),SelectOdd())
    nnedi3_rpow2(2)
    BicubicResize(width/2, height)
    Then deblend.
    Last edited by jagabo; 21st Oct 2012 at 09:27.
    Quote Quote  
  9. Good ideas both. I especially like the second one. Now why didn't I think of that?
    Quote Quote  
  10. Thanks guys for the help . .
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!