Replies: 1 comment
-
The produced SRT is 1:1 mapping from YouTube's own subtitles, which is by design. You can get the structured closed caption data using Note that video players tend to handle overlapped subtitles well, either by actually overlapping them, or by eliminating the overlap as you described. At least that's what I concluded when testing with VLC. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
There's a serious usability issue with current produced .srt files. Suppose this is one the Youtube's auto-generated transcripts:
Which has a lot of overlapped items. Item 2 will start before finishing the item 1 and … this is really annoying and makes it hard to use and follow. It's nearly unusable! You are watching a video and subtitle items are cutting, covering and overlapping each other constantly!
Here is a solution for this problem which can be used as an idea. If the next subtitle item overlaps the previous one, it will set the EndTs of the current subtitle to StartTs of the next subtitle-10 milliseconds.
Beta Was this translation helpful? Give feedback.
All reactions