It's meant to be used (temporarily) on your final output to see if anything might be cut off when shown on some displays. For example, text on some videos at Anime North 2006 was cut off when the videos were played. I know the title tool in Premiere shows the title safe box for you, but you might have overlays that you've done in another program.
Code: Select all
function ShowTitleSafe(clip v1)
{
v = BlankClip(v1,width=2,height=Height(v1)/10*8,color=$ffffff)
h = BlankClip(v1,width=Width(v1)/10*8,height=2,color=$ffffff)
v1.Overlay(v,x=Width(v1)/10,y=Height(v1)/10,mode="difference").\
Overlay(v,x=Width(v1)/10*9,y=Height(v1)/10,mode="difference").\
Overlay(h,x=Width(v1)/10,y=Height(v1)/10,mode="difference").\
Overlay(h,x=Width(v1)/10,y=Height(v1)/10*9,mode="difference")
}