diff options
| -rw-r--r-- | youtube_dl/extractor/crunchyroll.py | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/crunchyroll.py b/youtube_dl/extractor/crunchyroll.py index 4a7664296..58960b2f8 100644 --- a/youtube_dl/extractor/crunchyroll.py +++ b/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: | 
