I have .srt
file and I need to show content text if time equals timestamp.
example :
1
00:02:05,600 --> 00:02:08,840
line 1
line 2
2
00:02:09,280 --> 00:02:13,440
line 1
line 2
....
I need to show content like line1
and line2
in label1
.
if time 00:02:05,600 = timestamp from srt file 00:02:05,600 then
label1.visible = true
label1.text=line1 & line2
if time 00:02:08,840 = timestamp from srt file 00:02:08,840 then
label1.visible = false