logo Sign In

Post #500257

Author
RU.08
Parent topic
Info: - Greedo & Jabba subtitles, theatrical placement and fonts -
Link to post in topic
https://originaltrilogy.com/post/id/500257/action/topic#500257
Date created
18-May-2011, 5:15 AM

Interesting topic guys. TradeGothic seems not as bold as the font should be. I'm going to have a look at this, but first let me give you an avisynth function that will make the drop shadow (you can't use -1 for horizontal sadly)....


Function DropSub(clip input, string caption, int posX, int posY, int fStart, int fEnd)
{input
#Currently set for anamorphic PAL...
f = "TradeGothic LT Bold"
f_siz = 44
f_wid = 10.5
f_lin = 25
f_spc = -2
f_col = $FFFFFF

subtitle (caption,posX+2,posY+2,fStart,fEnd,f,f_siz,$000000,$7F000000,7,f_spc,f_lin,f_wid)
subtitle (caption,posX+1,posY+1,fStart,fEnd,f,f_siz,$000000,$00000000,7,f_spc,f_lin,f_wid)
subtitle (caption,posX, posY, fStart,fEnd,f,f_siz,f_col,$FF000000, 7,f_spc,f_lin,f_wid)
#The following line can be used view the subtitle centred...
#subtitle (caption,-1,200,fStart,fEnd,f,f_siz,f_col,$FF000000,8,f_spc,25,f_wid)
return(last)
}

Then you just call it like this...
DropSub("Going somewhere, Solo?", 240,374,70663,70698)


http://img146.imageshack.us/img146/9688/subtest.jpg