Commit two suggestions from the PR

Co-authored-by: dirkf <fieldhouse@gmx.net>
This commit is contained in:
Bart Broere 2024-09-21 21:58:53 +02:00 committed by GitHub
parent 179c8b06b6
commit ad6ee6fdd2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -95,7 +95,7 @@ class NPOIE(InfoExtractor):
},
fatal=False,
)
stream_url = stream_link.get('stream', {}).get('streamURL')
stream_url = traverse_obj(stream_link, ('stream', 'streamURL'))
formats.extend(self._extract_mpd_formats(stream_url, slug, mpd_id='dash', fatal=False))
return formats
@ -160,7 +160,7 @@ class ONIE(NPOIE):
def _real_extract(self, url):
video_id = url.rstrip('/').split('/')[-1]
page, _ = self._download_webpage_handle(url, video_id)
page = self._download_webpage(url, video_id)
results = re.findall("page: '(.+)'", page)
formats = []
for result in results: