I recently created html files with video and webvtt subtitles.
Everything is fine, but when I watch the video on mobile, the position of the subtitles is too low.
After searching I found that to fix this I had to add line:XX% to each line of the vtt file.
00:00:00.000 --> 00:00:03.700 line: 90%
some subtiltles
The problem is that I have to edit 500+ vtt files of 300+ lines one by one.
And vtt files will be added in the future.
I found that css couldn't solve this, so I searched and tried to solve it through javascript, but it didn't work.
TextTrack.cues.line = number
Is it possible to solve this via javascript?