diff options
| author | Yen Chi Hsuan <yan12125@gmail.com> | 2015-07-06 08:39:38 +0800 | 
|---|---|---|
| committer | Yen Chi Hsuan <yan12125@gmail.com> | 2015-07-06 08:39:38 +0800 | 
| commit | 13af92fdc443f753dcb3cb91736b09a4ae85c36a (patch) | |
| tree | 5c6dbefaed90a784df4584abeae561d6e6095739 /youtube_dl/extractor/common.py | |
| parent | 0c20ee7d4b0c98221c71769482980a0a218dadb4 (diff) | |
[common] Add 'fatal' to _extract_m3u8_formats
Diffstat (limited to 'youtube_dl/extractor/common.py')
| -rw-r--r-- | youtube_dl/extractor/common.py | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 81623bfe3..d859aea52 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -846,7 +846,8 @@ class InfoExtractor(object):      def _extract_m3u8_formats(self, m3u8_url, video_id, ext=None,                                entry_protocol='m3u8', preference=None, -                              m3u8_id=None, note=None, errnote=None): +                              m3u8_id=None, note=None, errnote=None, +                              fatal=True):          formats = [{              'format_id': '-'.join(filter(None, [m3u8_id, 'meta'])), @@ -866,7 +867,10 @@ class InfoExtractor(object):          m3u8_doc = self._download_webpage(              m3u8_url, video_id,              note=note or 'Downloading m3u8 information', -            errnote=errnote or 'Failed to download m3u8 information') +            errnote=errnote or 'Failed to download m3u8 information', +            fatal=fatal) +        if m3u8_doc is False: +            return m3u8_doc          last_info = None          last_media = None          kv_rex = re.compile( | 
