Positioning Subtitle (Cue Styling)
Hello. I'm searching for how to position the captions(subtitles) and I see around 2 method.
1. Cue Styling - useable for only .vtt file I test with .srt and didn't work so convert to .vtt then it's fine.
this is example of Cue Styling to position subtitle that I found from some topic in here.
WEBVTT
c1
00:00:01.000 --> 00:00:05.000
These captions test some features of the WebVTT formats
c2
00:00:06.000 --> 00:00:10.000 line:5%
This cue is positioned at the top of the video
c3
00:00:11.000 --> 00:00:15.000 position:5% align:start
This cue is positioned at the left side of the video.
c4
00:00:16.000 --> 00:00:20.000 position:95% align:end
And this one ate the right side.
Important question: Do I need to write code after numeric time every each line?
The real subtitle has 1000 lines, I guess it's very tired to write every line
2. Other method that I found is go to jwplayer.js file and fix position at jw-captions class(css)
I found this method from http://stackoverflow.com/questions/36364899/jw-player-wrong-subtitle-position
but!! it's not working !!! so is this method possible? or where's a point that I wrong
3. is there anyelse method for positioning subtitles?