Log in

View Full Version : Scrolling credits: Any way to fix both the text and the animation?


jellysandwich
11th October 2005, 19:36
VOB sample: http://whitevoid.com/files/credits.vob

I can only fix either the text or the animation, but I can't get both... This is a draft of my current script:

function VD_WarpSharp(clip clip, int "depth", int "blur")
{
LoadVirtualdubPlugin("c:\progra~1\gordia~1\avisynth25\warpsharp.vdf", "_VD_WarpSharp")
return clip._VD_WarpSharp(depth,blur)
}

# PLUGINS
LoadPlugin("C:\PROGRA~1\GORDIA~1\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\UnDot.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynth25\decomb522.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\TomsMoComp.dll")

# SOURCE
mpeg2source("D:\FLCL\1\1.d2v")
AssumeTFF().Telecide(guide=0,post=0,vthresh=30,dthresh=0, ovr="ovr.txt",show=false).Decimate(mode=0)
crop(4,0,712,480).LanczosResize(640,480).Undot()

#ConvertToRGB()
#ApplyRange(0,15867,"VD_WarpSharp",50,4) # Before comic
#ApplyRange(19151,31444,"VD_WarpSharp",50,4) # After comic
#ApplyRange(34755,35460,"VD_WarpSharp",50,4) # After credits
#ConvertToYV12()

#ApplyRange(31445,34754,"TomsMoComp",1,1,1)
js