mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 19:52:40 +01:00
[vidio] Fix HLS URL extraction (closes #15675)
This commit is contained in:
parent
0704306e1d
commit
2acc11d771
@ -49,8 +49,8 @@ def _real_extract(self, url):
|
|||||||
thumbnail = clip.get('image')
|
thumbnail = clip.get('image')
|
||||||
|
|
||||||
m3u8_url = m3u8_url or self._search_regex(
|
m3u8_url = m3u8_url or self._search_regex(
|
||||||
r'data(?:-vjs)?-clip-hls-url=(["\'])(?P<url>(?!\1).+)\1',
|
r'data(?:-vjs)?-clip-hls-url=(["\'])(?P<url>(?:(?!\1).)+)\1',
|
||||||
webpage, 'hls url')
|
webpage, 'hls url', group='url')
|
||||||
formats = self._extract_m3u8_formats(
|
formats = self._extract_m3u8_formats(
|
||||||
m3u8_url, display_id, 'mp4', entry_protocol='m3u8_native')
|
m3u8_url, display_id, 'mp4', entry_protocol='m3u8_native')
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
Loading…
Reference in New Issue
Block a user