Log in

View Full Version : Progressive credits on interlaced video


EruPii
13th October 2015, 14:41
Hello everyone,

I'm having trouble with an anime source which has progressive credits on an interlaced video. Is there a way to IVTC the source ignoring the credit text somehow?
Here is my source. (https://mega.nz/#!oBwAyZIA!qQQFeoHTKPfZrbb2TT7O1FFgC2bGJLKYscjyROUmjc4) It's the opening sequence of the anime.

Thanks for your help in advance.

kuchikirukia
13th October 2015, 17:00
If TFM is destroying the kanji, it's sometimes the post-processing. Try setting pp=0.

EruPii
13th October 2015, 22:52
It doesn't really work. I'm trying this code now.

LoadPlugin("c:\Program Files (x86)\MeGUI\tools\dgindex\DGDecode.dll")
mpeg2source("vob/rmexeb_ep01.d2v")

ConvertToYV12(interlaced=true)
deint = TDeint(order=1, type=3, full=false)
TFM(pp=1, clip2=deint, display=true)
#TDecimate(mode=1)

In the ending sequence, there are motions TFM telecides wrong. I've attached screenshots and the ending sequence VOB (https://mega.nz/#!oUwWgKwQ!PLYC_DwQQgWrsQLjrsNA3NMuKforwmvREHiWLyFVzZU) too.

Motion of the original source:
http://i1032.photobucket.com/albums/a403/DotThat93/th_source01_zpsh36qhrax.png (http://s1032.photobucket.com/user/DotThat93/media/source01_zpsh36qhrax.png.html) http://i1032.photobucket.com/albums/a403/DotThat93/th_source02_zpsxtr95ox9.png (http://s1032.photobucket.com/user/DotThat93/media/source02_zpsxtr95ox9.png.html) http://i1032.photobucket.com/albums/a403/DotThat93/th_source03_zpsyzeyrqsc.png (http://s1032.photobucket.com/user/DotThat93/media/source03_zpsyzeyrqsc.png.html) http://i1032.photobucket.com/albums/a403/DotThat93/th_source04_zpslng7sfkt.png (http://s1032.photobucket.com/user/DotThat93/media/source04_zpslng7sfkt.png.html)
And the motion of the TFMed source:
http://i1032.photobucket.com/albums/a403/DotThat93/th_tfmed01_zpshr46j5h1.png (http://s1032.photobucket.com/user/DotThat93/media/tfmed01_zpshr46j5h1.png.html) http://i1032.photobucket.com/albums/a403/DotThat93/th_tfmed02_zpstttugq5d.png (http://s1032.photobucket.com/user/DotThat93/media/tfmed02_zpstttugq5d.png.html) http://i1032.photobucket.com/albums/a403/DotThat93/th_tfmed03_zpsp1npnczh.png (http://s1032.photobucket.com/user/DotThat93/media/tfmed03_zpsp1npnczh.png.html) http://i1032.photobucket.com/albums/a403/DotThat93/th_tfmed04_zpsk9uffzfe.png (http://s1032.photobucket.com/user/DotThat93/media/tfmed04_zpsk9uffzfe.png.html)

Desbreko
14th October 2015, 02:06
In the ending sequence, there are motions TFM telecides wrong.
That can happen when the progressive credits change on a frame of animation that's combed from being telecined, making TFM think that the frame shouldn't be field matched because it'll cause combing in the credits. All you can really do about it is force the correct field match with an override file and then post-process deinterlace the credits.

EruPii
14th October 2015, 12:02
I guess that's the only way to make the field matching right. Thanks for the help, guys.