diff options
| author | Sergey M․ <dstftw@gmail.com> | 2016-11-27 15:40:28 +0700 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2016-11-27 15:40:28 +0700 | 
| commit | 69016738688199f95e6f732e4a5c68c99988309c (patch) | |
| tree | 8d209bcad45f8d3e06d64c9d50de5fd4bc623f89 | |
| parent | 560c8c6ec033b7b436c49b708d9d7362e7672aa1 (diff) | |
[azubu] Add support for azubu.uol.com.br (closes #11305)
| -rw-r--r-- | youtube_dl/extractor/azubu.py | 11 | 
1 files changed, 7 insertions, 4 deletions
| diff --git a/youtube_dl/extractor/azubu.py b/youtube_dl/extractor/azubu.py index 72e1bd59d..1eebf5dfd 100644 --- a/youtube_dl/extractor/azubu.py +++ b/youtube_dl/extractor/azubu.py @@ -11,7 +11,7 @@ from ..utils import (  class AzubuIE(InfoExtractor): -    _VALID_URL = r'https?://(?:www\.)?azubu\.tv/[^/]+#!/play/(?P<id>\d+)' +    _VALID_URL = r'https?://(?:www\.)?azubu\.(?:tv|uol.com.br)/[^/]+#!/play/(?P<id>\d+)'      _TESTS = [          {              'url': 'http://www.azubu.tv/GSL#!/play/15575/2014-hot6-cup-last-big-match-ro8-day-1', @@ -103,12 +103,15 @@ class AzubuIE(InfoExtractor):  class AzubuLiveIE(InfoExtractor): -    _VALID_URL = r'https?://(?:www\.)?azubu\.tv/(?P<id>[^/]+)$' +    _VALID_URL = r'https?://(?:www\.)?azubu\.(?:tv|uol.com.br)/(?P<id>[^/]+)$' -    _TEST = { +    _TESTS = [{          'url': 'http://www.azubu.tv/MarsTVMDLen',          'only_matching': True, -    } +    }, { +        'url': 'http://azubu.uol.com.br/adolfz', +        'only_matching': True, +    }]      def _real_extract(self, url):          user = self._match_id(url) | 
