Subtitles while playing MKV

Post Reply
tomiczech
Posts: 1
Joined: 05 Sep 2019, 10:20

Subtitles while playing MKV

Post by tomiczech » 05 Sep 2019, 10:25

When i use this function ( showing first found subtitles ):

streams = window.TvipPlayer.getStreamsCount();
for (i = 0; i < streams; i++) {
if (window.TvipPlayer.getStreamInfo(i)["type"] == "s")
{
window.TvipPlayer.setCurrentSubtitleStreamIndex(i);
break;
}
}

Subtitles are shown but not instantly. STB is waiting for next subtitle from current time.

It is possible to show current subtitle even if from time is in past?

TMC
Администратор
Posts: 925
Joined: 16 Jan 2014, 13:34

Re: Subtitles while playing MKV

Post by TMC » 05 Sep 2019, 23:57

No. Engine works only with future items.

Post Reply