mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 09:12:40 +01:00
remove unnecessary group name
This commit is contained in:
parent
3af1fac7b0
commit
9d681c2bb3
@ -30,10 +30,9 @@ def _real_extract(self, url):
|
||||
video_id
|
||||
)
|
||||
m3u8_url = self._html_search_regex(
|
||||
r'file: "(?P<m3u8_url>.*?)"',
|
||||
r'file:\s*"([^"]+)',
|
||||
webpage,
|
||||
'm3u8_url',
|
||||
group='m3u8_url'
|
||||
'm3u8_url'
|
||||
)
|
||||
formats = self._extract_m3u8_formats(m3u8_url, video_id)
|
||||
return {
|
||||
|
Loading…
Reference in New Issue
Block a user