Browse Source
[crunchyroll] Add even more relaxed fmt fallback
master
Sergey M․
9 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
4 additions and
1 deletions
-
youtube_dl/extractor/crunchyroll.py
|
|
@ -314,7 +314,10 @@ Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text |
|
|
|
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: |
|
|
|