diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2014-05-05 03:30:05 +0200 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2014-05-05 03:30:05 +0200 | 
| commit | 4de9e9a6db00853c8a809b08422b1ccddc3c446f (patch) | |
| tree | 334327552565a57213b0ab90be1cee1e58b5bc9b | |
| parent | 0067d6c4be59827878ac501cd98beeaa1d704e4a (diff) | |
[canalplus] Fix id determination (Fixes #2851)
| -rw-r--r-- | youtube_dl/extractor/canalplus.py | 15 | 
1 files changed, 11 insertions, 4 deletions
diff --git a/youtube_dl/extractor/canalplus.py b/youtube_dl/extractor/canalplus.py index 4f66124fd..0202078b0 100644 --- a/youtube_dl/extractor/canalplus.py +++ b/youtube_dl/extractor/canalplus.py @@ -4,11 +4,14 @@ from __future__ import unicode_literals  import re  from .common import InfoExtractor -from ..utils import unified_strdate +from ..utils import ( +    unified_strdate, +    url_basename, +)  class CanalplusIE(InfoExtractor): -    _VALID_URL = r'https?://(www\.canalplus\.fr/.*?/(?P<path>.*)|player\.canalplus\.fr/#/(?P<id>\d+))' +    _VALID_URL = r'https?://(?:www\.canalplus\.fr/.*?/(?P<path>.*)|player\.canalplus\.fr/#/(?P<id>[0-9]+))'      _VIDEO_INFO_TEMPLATE = 'http://service.canal-plus.com/video/rest/getVideosLiees/cplus/%s'      IE_NAME = 'canalplus.fr' @@ -26,10 +29,13 @@ class CanalplusIE(InfoExtractor):      def _real_extract(self, url):          mobj = re.match(self._VALID_URL, url) -        video_id = mobj.group('id') +        video_id = mobj.groupdict().get('id') + +        # Beware, some subclasses do not define an id group +        display_id = url_basename(mobj.group('path'))          if video_id is None: -            webpage = self._download_webpage(url, mobj.group('path')) +            webpage = self._download_webpage(url, display_id)              video_id = self._search_regex(r'<canal:player videoId="(\d+)"', webpage, 'video id')          info_url = self._VIDEO_INFO_TEMPLATE % video_id @@ -53,6 +59,7 @@ class CanalplusIE(InfoExtractor):          return {              'id': video_id, +            'display_id': display_id,              'title': '%s - %s' % (infos.find('TITRAGE/TITRE').text,                                    infos.find('TITRAGE/SOUS_TITRE').text),              'upload_date': unified_strdate(infos.find('PUBLICATION/DATE').text),  | 
