View Single Post
Old 25th March 2014, 09:34   #21  |  Link
real.finder
Registered User
 
Join Date: Jan 2012
Location: Mesopotamia
Posts: 2,587
Quote:
Originally Posted by osgZach View Post
Ok Here is my sample.

I didn't really know the best way to cut it, so I opened my demuxed m2v in DGindex and ran a selection then saved out a D2V with the smaller cut Mpeg.

This section appears to be entirely film (DGindex says) but I the entire movie has 30p sections in it, so its not a simple IVTC. I would not approach it from that solution.

I believe this short clip will show the color issue around character lines, I thought looked similar to the clip mentioned above with the police officer.

Gall Force: Eternal Story, sample clip
(25mb)
for me DGindex say Video Type: NTSC

it fine with

Code:
mpeg2Source("E:\Temp.demuxed.d2v")
TComb
AnimeIVTC(1)
mcdaa3 #or daa / daa3
and for "the color issue around character lines"

the source has halo and chroma blend/bleed/halo but not need for chrfix in animeivtc

you can try

Code:
# it better to use it after dehalo
  input=last
  chrwa=input.awarpsharp2(depth=4,chroma=6).aWarpSharp2(depth=-1,chroma=2)
  gchrblu=chrwa.MergeLuma(chrwa.blur(0.1)).aWarpSharp2(depth=6,chroma=6) #you can use depth=18 or any Value fit your source
  Mergechroma(gchrblu)
edit: To avoid the inverse results awarpsharp2(depth=4,chroma=6) can be awarpsharp2(depth=4,chroma=5) or you can add awarpsharp2(depth=4,chroma=5) before awarpsharp2(depth=4,chroma=6)

new one here

and here related thread
__________________
See My Avisynth Stuff

Last edited by real.finder; 25th October 2015 at 00:19. Reason: add trick to fix chroma blend/bleed/halo v1.35 link
real.finder is offline   Reply With Quote