mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-17 21:59:17 +00:00
Update yt_dlp/extractor/senategov.py
This commit is contained in:
parent
2f54918f30
commit
c6f0d05213
|
@ -188,9 +188,9 @@ def _real_extract(self, url):
|
||||||
f'https://www-senate-gov-msl3archive.akamaized.net/{msl3}/{filename}_1/master.m3u8',
|
f'https://www-senate-gov-msl3archive.akamaized.net/{msl3}/{filename}_1/master.m3u8',
|
||||||
f'{stream_domain}/i/{filename}_1@{stream_num}/master.m3u8',
|
f'{stream_domain}/i/{filename}_1@{stream_num}/master.m3u8',
|
||||||
f'{stream_domain}/i/{filename}.mp4/master.m3u8']
|
f'{stream_domain}/i/{filename}.mp4/master.m3u8']
|
||||||
for videourl in urls_alternatives:
|
for video_url in urls_alternatives:
|
||||||
formats = self._extract_m3u8_formats(videourl, display_id, ext='mp4', fatal=False)
|
formats = self._extract_m3u8_formats(video_url, display_id, ext='mp4', fatal=False)
|
||||||
if len(formats) > 0:
|
if formats:
|
||||||
break
|
break
|
||||||
|
|
||||||
title = self._html_search_regex(
|
title = self._html_search_regex(
|
||||||
|
|
Loading…
Reference in a new issue