mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 08:19:57 +01:00
[wdr] split long lines
This commit is contained in:
parent
6101f45ef9
commit
0368181998
@ -108,7 +108,9 @@ def _real_extract(self, url):
|
|||||||
if mobj.group('player') is None:
|
if mobj.group('player') is None:
|
||||||
entries = [
|
entries = [
|
||||||
self.url_result(page_url + href, 'WDR')
|
self.url_result(page_url + href, 'WDR')
|
||||||
for href in re.findall(r'<a href="/?(.+?%s\.html)" rel="nofollow"' % self._PLAYER_REGEX, webpage)
|
for href in re.findall(
|
||||||
|
r'<a href="/?(.+?%s\.html)" rel="nofollow"' % self._PLAYER_REGEX,
|
||||||
|
webpage)
|
||||||
]
|
]
|
||||||
|
|
||||||
if entries: # Playlist page
|
if entries: # Playlist page
|
||||||
@ -133,8 +135,8 @@ def _real_extract(self, url):
|
|||||||
note='Downloading playlist page %d' % page_num)
|
note='Downloading playlist page %d' % page_num)
|
||||||
return self.playlist_result(entries, page_id)
|
return self.playlist_result(entries, page_id)
|
||||||
|
|
||||||
flashvars = compat_parse_qs(
|
flashvars = compat_parse_qs(self._html_search_regex(
|
||||||
self._html_search_regex(r'<param name="flashvars" value="([^"]+)"', webpage, 'flashvars'))
|
r'<param name="flashvars" value="([^"]+)"', webpage, 'flashvars'))
|
||||||
|
|
||||||
page_id = flashvars['trackerClipId'][0]
|
page_id = flashvars['trackerClipId'][0]
|
||||||
video_url = flashvars['dslSrc'][0]
|
video_url = flashvars['dslSrc'][0]
|
||||||
@ -148,7 +150,8 @@ def _real_extract(self, url):
|
|||||||
if 'trackerClipAirTime' in flashvars:
|
if 'trackerClipAirTime' in flashvars:
|
||||||
upload_date = flashvars['trackerClipAirTime'][0]
|
upload_date = flashvars['trackerClipAirTime'][0]
|
||||||
else:
|
else:
|
||||||
upload_date = self._html_search_meta('DC.Date', webpage, 'upload date')
|
upload_date = self._html_search_meta(
|
||||||
|
'DC.Date', webpage, 'upload date')
|
||||||
|
|
||||||
if upload_date:
|
if upload_date:
|
||||||
upload_date = unified_strdate(upload_date)
|
upload_date = unified_strdate(upload_date)
|
||||||
@ -157,12 +160,15 @@ def _real_extract(self, url):
|
|||||||
preference = qualities(['S', 'M', 'L', 'XL'])
|
preference = qualities(['S', 'M', 'L', 'XL'])
|
||||||
|
|
||||||
if video_url.endswith('.f4m'):
|
if video_url.endswith('.f4m'):
|
||||||
formats.extend(self._extract_f4m_formats(video_url + '?hdcore=3.2.0&plugin=aasp-3.2.0.77.18', page_id, f4m_id='hds', fatal=False))
|
formats.extend(self._extract_f4m_formats(
|
||||||
|
video_url + '?hdcore=3.2.0&plugin=aasp-3.2.0.77.18', page_id,
|
||||||
|
f4m_id='hds', fatal=False))
|
||||||
elif video_url.endswith('.smil'):
|
elif video_url.endswith('.smil'):
|
||||||
formats.extend(self._extract_smil_formats(video_url, page_id, False, {
|
formats.extend(self._extract_smil_formats(
|
||||||
'hdcore': '3.3.0',
|
video_url, page_id, False, {
|
||||||
'plugin': 'aasp-3.3.0.99.43',
|
'hdcore': '3.3.0',
|
||||||
}))
|
'plugin': 'aasp-3.3.0.99.43',
|
||||||
|
}))
|
||||||
else:
|
else:
|
||||||
formats.append({
|
formats.append({
|
||||||
'url': video_url,
|
'url': video_url,
|
||||||
@ -171,11 +177,16 @@ def _real_extract(self, url):
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
m3u8_url = self._search_regex(r'rel="adaptiv"[^>]+href="([^"]+)"', webpage, 'm3u8 url', default=None)
|
m3u8_url = self._search_regex(
|
||||||
|
r'rel="adaptiv"[^>]+href="([^"]+)"',
|
||||||
|
webpage, 'm3u8 url', default=None)
|
||||||
if m3u8_url:
|
if m3u8_url:
|
||||||
formats.extend(self._extract_m3u8_formats(m3u8_url, page_id, 'mp4', 'm3u8_native', m3u8_id='hls', fatal=False))
|
formats.extend(self._extract_m3u8_formats(
|
||||||
|
m3u8_url, page_id, 'mp4', 'm3u8_native',
|
||||||
|
m3u8_id='hls', fatal=False))
|
||||||
|
|
||||||
direct_urls = re.findall(r'rel="web(S|M|L|XL)"[^>]+href="([^"]+)"', webpage)
|
direct_urls = re.findall(
|
||||||
|
r'rel="web(S|M|L|XL)"[^>]+href="([^"]+)"', webpage)
|
||||||
if direct_urls:
|
if direct_urls:
|
||||||
for quality, video_url in direct_urls:
|
for quality, video_url in direct_urls:
|
||||||
formats.append({
|
formats.append({
|
||||||
|
Loading…
Reference in New Issue
Block a user