diff options
| author | Samantaz Fox <coding@samantaz.fr> | 2023-10-08 12:40:49 +0200 |
|---|---|---|
| committer | Samantaz Fox <coding@samantaz.fr> | 2023-10-08 12:40:49 +0200 |
| commit | 0aebac5f3e4848da5deb8fc9b656831d5f7622df (patch) | |
| tree | 8a6509255a480573299503509a22a913b2d89628 /src | |
| parent | 60fae015d8b5e4b0bfac8306065db07f93c4c661 (diff) | |
| download | invidious-0aebac5f3e4848da5deb8fc9b656831d5f7622df.tar.gz invidious-0aebac5f3e4848da5deb8fc9b656831d5f7622df.tar.bz2 invidious-0aebac5f3e4848da5deb8fc9b656831d5f7622df.zip | |
Captions: Use 'fmt=vtt' instead of 'format=vtt'
Diffstat (limited to 'src')
| -rw-r--r-- | src/invidious/routes/api/v1/videos.cr | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/invidious/routes/api/v1/videos.cr b/src/invidious/routes/api/v1/videos.cr index 449c9f9b..1017ac9d 100644 --- a/src/invidious/routes/api/v1/videos.cr +++ b/src/invidious/routes/api/v1/videos.cr @@ -136,17 +136,17 @@ module Invidious::Routes::API::V1::Videos end end else - # Some captions have "align:[start/end]" and "position:[num]%" - # attributes. Those are causing issues with VideoJS, which is unable - # to properly align the captions on the video, so we remove them. - # - # See: https://github.com/iv-org/invidious/issues/2391 - webvtt = YT_POOL.client &.get("#{url}&format=vtt").body + webvtt = YT_POOL.client &.get("#{url}&fmt=vtt").body + if webvtt.starts_with?("<?xml") webvtt = caption.timedtext_to_vtt(webvtt) else - webvtt = YT_POOL.client &.get("#{url}&format=vtt").body - .gsub(/([0-9:.]{12} --> [0-9:.]{12}).+/, "\\1") + # Some captions have "align:[start/end]" and "position:[num]%" + # attributes. Those are causing issues with VideoJS, which is unable + # to properly align the captions on the video, so we remove them. + # + # See: https://github.com/iv-org/invidious/issues/2391 + webvtt = webvtt.gsub(/([0-9:.]{12} --> [0-9:.]{12}).+/, "\\1") end end end |
