Log in

View Full Version : Scenarist subtitles/audio step by step.


emotionboy
20th February 2012, 13:44
Hi all,

I've just imported subtitles in Scenarist and I'm not sure how I use the navicommand or what the next step is.

I basically have a blu-ray where once you press play you are taken to various presentation options. These include play (Dolby Surround Mix), play with song lyrics (subtitle 1), play with script on screen (subtitle 2).

How do I set things up so that once the play option has been made it will play the appropriate subtitles.

Thanks in advance.

srfscenar
20th February 2012, 17:54
hi.

2 easy Ways.
1: BEFORE the PlayTitle command of each button add the:
SetStream PG _textST:No=1 [DispON] for song Lyrics button and
SetStream PG _textST:No=2 [DispON] for script on screen button.
That way you load the appropriate subtitle you want.

or
2: Set a GPRM value for each button and do the checking on the as pre commands in the title you have.
e.g. for song Lyrics button Move (GPR)"xxx"[ID:1] 1
and for script button (GPR)"xxx"[ID:1] 2
Then on your title commands put on top:
if ((GPR)"xxx"[ID:1] == 1 SetStream PG_textST:No=1 [DispON]
if ((GPR)"xxx"[ID:1] == 2 SetStream PG_textST:No=2 [DispON]
and after those you put the PlayPL command.

So in the begining it checks which is the GPR value and loads the appropriate subtitle.

Hope it helps.

rik1138
21st February 2012, 04:21
Also, don't forget for the button that just 'Plays' to have a subtitle command with DispOFF set.

That way you are sure you are turning the subtitles off (in case they were previously turned on somehow...), assuming that button is meant for subtitles always off playback.