Log in

View Full Version : Dot Crawl and Rainbow Problem?


ss2
3rd March 2015, 11:38
Hi, I am in need of some help trying to fix the problems in the sample RAW video and images uploaded here (https://www.dropbox.com/sh/xn15gqkfuynrmyf/AABMTWNOj5WM9U_2f9GFTPDua?dl=0).

I used PgcDemux to demux one of the video streams to a .m2v file which is 2 minutes 48 seconds long.

The images (.PNG) where taken from the .mkv file I made from MeGUI using the script I made below. The .mkv file was played in MPC-HC player so the default filters in MPC-HC player would be adjusting the image quality slightly.

The problems I believe that are present are: (If any others please point them out!)
• Dot Crawl
• Rainbows
• Aliasing
• Also maybe I didn't select the correct type of TIVTC filter

Here is the script I used for the final result, the images above show the results:

MeGUI Settings:
• Filters -> Deinterlacing -> [✓] Source is Anime (not automatically detected by Analysis)
• Encoding Mode: Targeting quality
• Quality: 18.0
• Preset: Medium
• Tuning: None
• AVC Profile: High Profile
• AVC Level: Unrestricted/Autoguess (the final .mkv chose Level 3.0)
• Target Playback Device: Default

LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\DGDecode.dll")
DGDecode_mpeg2source("J:\New folder (2)\001.d2v", cpu=4)
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\TComb.dll")
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\TIVTC.dll")
Import("C:\Program Files (x86)\AviSynth 2.5\plugins\TemporalDegrain.avs")
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\FFT3DFilter.dll")
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\hqdn3d.dll")
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\masktools2.dll")
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\mvtools2.dll")
Import("C:\Program Files (x86)\AviSynth 2.5\plugins\Vmtoon-v0.74.avsi")
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\RemoveGrain.dll")
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\Repair.dll")
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\warpsharp.dll")
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\aWarpSharp.dll")

TComb(mode=2, fthreshl=7, fthreshc=7, othreshl=8, othreshc=8, map=false, scthresh=12.0)

TFM(pp=5)
TDecimate(mode=1)

TemporalDegrain()
vmToon()
aWarpSharp2(thresh=128, blur=2, type=0, depth=8, chroma=4)

crop(4, 0, -6, 0)
Spline36Resize(640,480)

I noticed another member ask here (http://forum.doom9.org/showthread.php?p=1301467#post1301467) about the same anime but he/she hasn't logged in since 2013 so no point in messaging them.

Also here (http://img594.imageshack.us/img594/415/remaster.jpg) is an example of the Original DVD (RAW) vs Remaster.

Thanks for any help!