AeroZ
18th July 2008, 15:07
First of all my main problem: In my file I have strange dot crawls. I think they are dot crawls but the strange thing is no filter work on them and they are only visible in text (shown in my sample). The rest of my source is clean without dot crawls.
Sample (http://rapidshare.com/files/130127878/sample.m2v.html)
Here is my script, maybe theres something wrong?
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\DGDecode.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\De.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\TDeint.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\mt_masktools.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\TIVTC.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\SangNom.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\RepairS.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\TemporalCleaner.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\Deen.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\TTempSmooth.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\gradfun2db.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\asharp.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\FFT3DFilter.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\aWarpSharp.dll")
import("D:\Programme\AviSynth 2.5\Functions\Mrestore.avs")
import("D:\Programme\AviSynth 2.5\Functions\FastLineDarken.avs")
import("D:\Programme\AviSynth 2.5\Functions\aaf.avs")
import("D:\Programme\AviSynth 2.5\Functions\Colorbleeding.avs")
MPEG2Source("D:\Test\VTS_01_1.d2v")
DeDot()
ord= 1
tdeint(order=ord,mode=1,type=2)
mrestore(numr=600,denm=1001)
cwarpw()
Deblock(25, 2, 4)
Temporalcleaner(3,6).Deen("a2d",3,5,7)
TTempSmoothF(maxr=1)
FFT3DFilter(Sigma=3,plane=4,wintype=1)
aaf("repair",aas=-0.7)
FastLineDarken(strength=70,thinning=0)
Repair(last.sharpen(1),last,16)
asharp(0.8,2,0.25,true)
gradfun2db(thr=1.6)
crop(12,0,-10,-4)
Lanczos4Resize(720,576)
The other problem are some small rainbow effects. You don't notice them so much, but I would like to remove them completely.
My video also have some little colorbleed effects. I have already found a script that removes the colorbleedes perfectly. I can't remember where I found it. Strangely it removes the rainbows almost completely too.
Example pic (http://img155.imageshack.us/img155/1125/vfihj7uup1.jpg) (I tried to zoom on the rainbows for better view) First screenshot shows the rainbows without the colorbleed script. The second one uses the script against colorbleeds. But there is still some yellow on the outlines. How can I remove it?
And here is the script: As I said I found it somewhere. But I have no idea where I got it xD
function CwarpW(clip clip, float "wrp1"){
wrp1 = default(wrp1, 40)
lumma=clip.isYV12() ? clip : clip.converttoyv12
ccon=clip.isYV12() ? clip : clip.converttoyv12
croma=ccon.aWarpSharp(depth=wrp1,blurlevel=1,cm=1)
lumma.Mergechroma(croma) }
function CwarpS(clip clip, float "wrp1", float "wrp2"){
wrp1 = default(wrp1, 34)
wrp2 = default(wrp2, 36)
lumma=clip.isYV12() ? clip : clip.converttoyv12
ccon=clip.isYV12() ? clip : clip.converttoyv12
croma=ccon.bicubicresize(width(lumma)/2,height(lumma)/2).\
aWarpSharp(depth=wrp1,blurlevel=1,cm=1).bicubicres ize(width(lumma),height(lumma))
worrk=lumma.Mergechroma(croma)
croma2=worrk.aWarpSharp(depth=wrp2,blurlevel=1,cm= 1)
lumma.Mergechroma(croma2) }
Thanks in advance
Sample (http://rapidshare.com/files/130127878/sample.m2v.html)
Here is my script, maybe theres something wrong?
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\DGDecode.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\De.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\TDeint.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\mt_masktools.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\TIVTC.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\SangNom.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\RepairS.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\TemporalCleaner.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\Deen.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\TTempSmooth.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\gradfun2db.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\asharp.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\FFT3DFilter.dll")
LoadPlugin("D:\Programme\AviSynth 2.5\Filters\aWarpSharp.dll")
import("D:\Programme\AviSynth 2.5\Functions\Mrestore.avs")
import("D:\Programme\AviSynth 2.5\Functions\FastLineDarken.avs")
import("D:\Programme\AviSynth 2.5\Functions\aaf.avs")
import("D:\Programme\AviSynth 2.5\Functions\Colorbleeding.avs")
MPEG2Source("D:\Test\VTS_01_1.d2v")
DeDot()
ord= 1
tdeint(order=ord,mode=1,type=2)
mrestore(numr=600,denm=1001)
cwarpw()
Deblock(25, 2, 4)
Temporalcleaner(3,6).Deen("a2d",3,5,7)
TTempSmoothF(maxr=1)
FFT3DFilter(Sigma=3,plane=4,wintype=1)
aaf("repair",aas=-0.7)
FastLineDarken(strength=70,thinning=0)
Repair(last.sharpen(1),last,16)
asharp(0.8,2,0.25,true)
gradfun2db(thr=1.6)
crop(12,0,-10,-4)
Lanczos4Resize(720,576)
The other problem are some small rainbow effects. You don't notice them so much, but I would like to remove them completely.
My video also have some little colorbleed effects. I have already found a script that removes the colorbleedes perfectly. I can't remember where I found it. Strangely it removes the rainbows almost completely too.
Example pic (http://img155.imageshack.us/img155/1125/vfihj7uup1.jpg) (I tried to zoom on the rainbows for better view) First screenshot shows the rainbows without the colorbleed script. The second one uses the script against colorbleeds. But there is still some yellow on the outlines. How can I remove it?
And here is the script: As I said I found it somewhere. But I have no idea where I got it xD
function CwarpW(clip clip, float "wrp1"){
wrp1 = default(wrp1, 40)
lumma=clip.isYV12() ? clip : clip.converttoyv12
ccon=clip.isYV12() ? clip : clip.converttoyv12
croma=ccon.aWarpSharp(depth=wrp1,blurlevel=1,cm=1)
lumma.Mergechroma(croma) }
function CwarpS(clip clip, float "wrp1", float "wrp2"){
wrp1 = default(wrp1, 34)
wrp2 = default(wrp2, 36)
lumma=clip.isYV12() ? clip : clip.converttoyv12
ccon=clip.isYV12() ? clip : clip.converttoyv12
croma=ccon.bicubicresize(width(lumma)/2,height(lumma)/2).\
aWarpSharp(depth=wrp1,blurlevel=1,cm=1).bicubicres ize(width(lumma),height(lumma))
worrk=lumma.Mergechroma(croma)
croma2=worrk.aWarpSharp(depth=wrp2,blurlevel=1,cm= 1)
lumma.Mergechroma(croma2) }
Thanks in advance