mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-08 21:52:28 +05:30
Use WebVTT.build for chapters vtt file
This commit is contained in:
parent
310825997f
commit
b0e0e19017
@ -49,37 +49,9 @@ module Invidious::Videos::Chapters
|
||||
|
||||
# Converts an array of Chapter objects to a webvtt file
|
||||
def self.chapters_to_vtt(chapters : Array(Chapter))
|
||||
vtt = String.build do |vtt|
|
||||
vtt << <<-END_VTT
|
||||
WEBVTT
|
||||
|
||||
|
||||
END_VTT
|
||||
|
||||
# Taken from Invidious::Videos::Caption.timedtext_to_vtt()
|
||||
vtt = WebVTT.build do |build|
|
||||
chapters.each do |chapter|
|
||||
start_time = chapter.start_ms.milliseconds
|
||||
end_time = chapter.end_ms.milliseconds
|
||||
|
||||
# start_time
|
||||
vtt << start_time.hours.to_s.rjust(2, '0')
|
||||
vtt << ':' << start_time.minutes.to_s.rjust(2, '0')
|
||||
vtt << ':' << start_time.seconds.to_s.rjust(2, '0')
|
||||
vtt << '.' << start_time.milliseconds.to_s.rjust(3, '0')
|
||||
|
||||
vtt << " --> "
|
||||
|
||||
# end_time
|
||||
vtt << end_time.hours.to_s.rjust(2, '0')
|
||||
vtt << ':' << end_time.minutes.to_s.rjust(2, '0')
|
||||
vtt << ':' << end_time.seconds.to_s.rjust(2, '0')
|
||||
vtt << '.' << end_time.milliseconds.to_s.rjust(3, '0')
|
||||
|
||||
vtt << "\n"
|
||||
vtt << chapter.title
|
||||
|
||||
vtt << "\n"
|
||||
vtt << "\n"
|
||||
build.cue(chapter.start_ms.milliseconds, chapter.end_ms.milliseconds, chapter.title)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user