Compare commits

..

2 Commits

Author SHA1 Message Date
Morgan Harris
b5dc97eab7
Merge 7ac17d4b44 into c5098961b0 2024-09-14 22:18:34 +00:00
dirkf
7ac17d4b44
Match merged yt-dlp extractor 2024-09-14 23:18:32 +01:00

View File

@ -117,7 +117,7 @@ class TenPlayIE(TenPlayBase):
'https://vod.ten.com.au/api/videos/bcquery?command=find_videos_by_id&video_id={0}'.format(data['altId']),
content_id, 'Downloading video JSON')
m3u8_url = self._request_webpage(
HEADRequest(traverse_obj(video_data, ('items', 0, 'HLSURL', T(url_or_none)))),
HEADRequest(video_data['items'][0]['HLSURL']),
content_id, 'Checking stream URL').url
if '10play-not-in-oz' in m3u8_url:
self.raise_geo_restricted()