Skip to content

Commit c723c4e

Browse files
authored
[ie/vimeo] Extract subtitles from player subdomain (yt-dlp#13350)
Closes yt-dlp#12198 Authored by: bashonly
1 parent 148a1eb commit c723c4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

yt_dlp/extractor/vimeo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def _parse_config(self, config, video_id):
236236
for tt in (request.get('text_tracks') or []):
237237
subtitles.setdefault(tt['lang'], []).append({
238238
'ext': 'vtt',
239-
'url': urljoin('https://vimeo.com', tt['url']),
239+
'url': urljoin('https://player.vimeo.com/', tt['url']),
240240
})
241241

242242
thumbnails = []

0 commit comments

Comments
 (0)