mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-19 11:19:28 +01:00
[crunchyroll] Relax fmt regex
This commit is contained in:
parent
68835d687a
commit
6ff4469528
@ -307,7 +307,7 @@ def _real_extract(self, url):
|
||||
'video_uploader', fatal=False)
|
||||
|
||||
available_fmts = []
|
||||
for a, fmt in re.findall(r'(<a[^>]+token="showmedia\.([0-9]{3,4})p"[^>]+>.*?</a>)', webpage):
|
||||
for a, fmt in re.findall(r'(<a[^>]+token=["\']showmedia\.([0-9]{3,4})p["\'][^>]+>)', webpage):
|
||||
attrs = extract_attributes(a)
|
||||
href = attrs.get('href')
|
||||
if href and '/freetrial' in href:
|
||||
|
Loading…
Reference in New Issue
Block a user