jonnkakarotto wrote:As for what I'm doing, I'd planned on doing something similar to the end of your "Hello Fairy" AMV, as far as subtitles go. Optimally, I'd like it to look as though it was subtitled that way on the DVD.
The Mahoro part ("Ice cream truck!") was subtitled with AviSynth.
Code: Select all
v=AVISource("c:\av\ahf\ED\Mahorospeech.avi").AssumeFPS(23.976)
v1=v.Trim(0,10)
v2a=v.Trim(11,125)
v2=v2a.Subtitle("text",align=8,size=30,x=321-2,y=375,text_color=$0).\
Subtitle("text",align=8,size=30,x=321+2,y=375,text_color=$0).\
Subtitle("text",align=8,size=30,x=321,y=375-2,text_color=$0).\
Subtitle("text",align=8,size=30,x=321,y=375+2,text_color=$0).\
Subtitle("text",align=8,size=30,x=321-1,y=375-1,text_color=$0).\
Subtitle("text",align=8,size=30,x=321-1,y=375+1,text_color=$0).\
Subtitle("text",align=8,size=30,x=321+1,y=375-1,text_color=$0).\
Subtitle("text",align=8,size=30,x=321+1,y=375+1,text_color=$0).\
Subtitle("text",align=8,size=30,x=321,y=375)
v1+v2
("text" = "I think that Hell is bad! It gives you ADD!")
I called Subtitle multiple times because I wanted a thicker border.