1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-12-21 00:25:42 +07:00

[crunchyroll] Add even more relaxed fmt fallback

This commit is contained in:
Sergey M․
2016-04-29 19:43:53 +06:00
parent 6ff4469528
commit 8312b1a3d1

View File

@@ -314,7 +314,10 @@ def _real_extract(self, url):
continue
available_fmts.append(fmt)
if not available_fmts:
available_fmts = re.findall(r'token="showmedia\.([0-9]{3,4})p"', webpage)
for p in (r'token=["\']showmedia\.([0-9]{3,4})p"', r'showmedia\.([0-9]{3,4})p'):
available_fmts = re.findall(p, webpage)
if available_fmts:
break
video_encode_ids = []
formats = []
for fmt in available_fmts: