Update yt_dlp/extractor/redbulltv.py

Fix Url formatting.

Co-authored-by: pukkandan <pukkandan.ytdlp@gmail.com>
pull/12012/head
suanto 3 months ago committed by GitHub
parent 7b9398f1d1
commit aa72488bd6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -229,7 +229,7 @@ class RedBullIE(InfoExtractor):
display_id, query={
'filter[type]': filter_type, 'page[limit]': 1, 'filter[uriSlug]': display_id,
'disableUsageRestrictions': 'true', 'rb3Schema': 'v1:pageConfig',
'rb3PageUrl': '/' + region.lower() + '-' + lang.lower() + '/' + filter_type + '/' + display_id,
'rb3PageUrl': f'/{region.lower()}-{lang.lower()}/{filter_type}/{display_id}',
})['data']
video_info = self._download_json(

Loading…
Cancel
Save