diff options
| author | Omar Roth <omarroth@hotmail.com> | 2018-08-07 07:36:51 -0500 |
|---|---|---|
| committer | Omar Roth <omarroth@hotmail.com> | 2018-08-07 07:36:51 -0500 |
| commit | 9a02b5278a42b8785ed761d95f2d98a21df8ae71 (patch) | |
| tree | 7503651a4fab1ee4242c8e7780a750d79a184aae /src | |
| parent | 30724b692412110201cf2e4c9c2cdb7830307e39 (diff) | |
| download | invidious-9a02b5278a42b8785ed761d95f2d98a21df8ae71.tar.gz invidious-9a02b5278a42b8785ed761d95f2d98a21df8ae71.tar.bz2 invidious-9a02b5278a42b8785ed761d95f2d98a21df8ae71.zip | |
Fix duration for auto-generated captions
Diffstat (limited to 'src')
| -rw-r--r-- | src/invidious.cr | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/invidious.cr b/src/invidious.cr index 9ad2e9b2..a9601256 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -1646,16 +1646,24 @@ get "/api/v1/captions/:id" do |env| END_VTT - caption_xml.xpath_nodes("//transcript/text").each do |node| + caption_nodes = caption_xml.xpath_nodes("//transcript/text") + caption_nodes.each_with_index do |node, i| start_time = node["start"].to_f.seconds duration = node["dur"]?.try &.to_f.seconds duration ||= start_time - end_time = start_time + duration + + if caption_nodes.size > i + 1 + end_time = caption_nodes[i + 1]["start"].to_f.seconds + else + end_time = start_time + duration + end start_time = "#{start_time.hours.to_s.rjust(2, '0')}:#{start_time.minutes.to_s.rjust(2, '0')}:#{start_time.seconds.to_s.rjust(2, '0')}.#{start_time.milliseconds.to_s.rjust(3, '0')}" end_time = "#{end_time.hours.to_s.rjust(2, '0')}:#{end_time.minutes.to_s.rjust(2, '0')}:#{end_time.seconds.to_s.rjust(2, '0')}.#{end_time.milliseconds.to_s.rjust(3, '0')}" text = HTML.unescape(node.content) + text = text.gsub(/<font color="#[a-fA-F0-9]{6}">/, "") + text = text.gsub(/<\/font>/, "") if md = text.match(/(?<name>.*) : (?<text>.*)/) text = "<v #{md["name"]}>#{md["text"]}</v>" end |
