diff options
Diffstat (limited to 'youtube_dl/extractor/clipsyndicate.py')
| -rw-r--r-- | youtube_dl/extractor/clipsyndicate.py | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/youtube_dl/extractor/clipsyndicate.py b/youtube_dl/extractor/clipsyndicate.py index d07d544ea..8306d6fb7 100644 --- a/youtube_dl/extractor/clipsyndicate.py +++ b/youtube_dl/extractor/clipsyndicate.py @@ -1,7 +1,5 @@  from __future__ import unicode_literals -import re -  from .common import InfoExtractor  from ..utils import (      find_xpath_attr, @@ -10,9 +8,9 @@ from ..utils import (  class ClipsyndicateIE(InfoExtractor): -    _VALID_URL = r'http://www\.clipsyndicate\.com/video/play(list/\d+)?/(?P<id>\d+)' +    _VALID_URL = r'http://(?:chic|www)\.clipsyndicate\.com/video/play(list/\d+)?/(?P<id>\d+)' -    _TEST = { +    _TESTS = [{          'url': 'http://www.clipsyndicate.com/video/play/4629301/brick_briscoe',          'md5': '4d7d549451bad625e0ff3d7bd56d776c',          'info_dict': { @@ -22,11 +20,13 @@ class ClipsyndicateIE(InfoExtractor):              'duration': 612,              'thumbnail': 're:^https?://.+\.jpg',          }, -    } +    }, { +        'url': 'http://chic.clipsyndicate.com/video/play/5844117/shark_attack', +        'only_matching': True, +    }]      def _real_extract(self, url): -        mobj = re.match(self._VALID_URL, url) -        video_id = mobj.group('id') +        video_id = self._match_id(url)          js_player = self._download_webpage(              'http://eplayer.clipsyndicate.com/embed/player.js?va_id=%s' % video_id,              video_id, 'Downlaoding player') | 
