logo Sign In

Post #501187

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

# Subtitle file for use with GOUT-related projects.
# Please note, I have assumed you cropped your PAL image
# entirely to 720x432, or your NTSC image to 720x366 at
# this stage (and that you are adding any black boarders
# later). Variables have been used and are easily changable.
#
# Written by RU.08.

Mpeg2Source("SW_GOUT.d2v")

ANHSubs()

Function ANHSubs(clip input)
{input

#Values for PAL
l_pos = 374
ll_pos = 327
#values for NTSC
#l_pos = 317
#ll_pos = 277

DropSub("Going somewhere, Solo?", \
236,l_pos,70663,70698)
DropSub("It’s too late. Y", \
20,l_pos,70825,70933)
DropSub("ou should have paid him when you had the chance.", \
168,l_pos,70825,70933)
DropSub("Jabba’s put a price on your head so large every\nbounty hunter in the galaxy will be looking for you...", \
91,ll_pos,70940,71091)
DropSub("I’m lucky I found you first.", \
224,l_pos,71098,71137)
DropSub("If you give it to me, I might forget I found you.", \
115,l_pos,71203,71284)
DropSub("Jabba’s through with you.", \
229,l_pos,71365,71406)
DropSub("He has no time for smugglers...", \
198,l_pos,71433,71491)
DropSub("...who drop their shipments at the first sign of an Imperial cruiser.", \
17,l_pos,71500,71597)
DropSub("Y", \
74,l_pos,71656,71750)
DropSub("ou can tell that to Jabba. He may only take your ship.", \
86,l_pos,71656,71750)
DropSub("That’s the idea.", \
280,l_pos,71806,71835)
DropSub("I’ve been looking forward to this for a long time.", \
108,l_pos,71843,71933)
return(last)
}

Function DropSub(clip input, string caption, int posX, int posY, int fStart, int fEnd)
{input
f = "AlternateGotNo3D"
f_wid = 9.8
f_spc = -1
f_col = $FFFFFF
#Values for PAL
f_siz = 40
f_lin = 56
#Values for NTSC
#f_siz = 33
#f_lin = 57
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 was used to calculate the centre of the subtitles...
#subtitle (caption,-1,200,fStart,fEnd,f,f_siz,f_col,$FF000000,8,f_spc,25,f_wid)
return(last)
}